/*----------------------------------------------------- */
/*  form          */
/*----------------------------------------------------- */
.form {
  background: #e2eade;
  padding: 40px 0 1px;
}

.form_inner {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  max-width: 1000px;
  padding: 0 2%;
  position: relative;
  margin: 0 auto;
}

.form_wrapper {
  background-color: #fff;
  padding: 60px 5%;
  margin-bottom: 60px;
  border-radius: 10px;
}

.form_ttl {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}

.form_content {
  line-height: 1.42857;
  margin-bottom: 30px;
  display: flex;
  /* align-items: center; */
}


.form_content p {
  font-weight: 600;
  margin-bottom: 10px;
  width: 27%;
  font-size: 18px;
  padding-top: 12.5px;
}

.input_wrapper {
  position: relative;
  line-height: 1.42857;
  width: 73%;
}

.input_wrapper input,
.input_wrapper select,
.input_wrapper textarea {
  background: none repeat scroll 0 0 #fff;
  border-radius: 0;
  border-style: solid;
  border-width: 1px;
  box-shadow: none;
  color: #404040;
  display: block;
  height: 48px;
  outline: none;
  /* width: 100%; */
  width: 64%;
  border-color: #C4C4C4;
  padding-left: 8px;
  transition: border-color 0.3s ease 0s;
  border-radius: 4px;
  font-size: 16px;
}


.input_wrapper input::placeholder,
.input_wrapper select option {
  font-size: 16px;
}


.input_wrapper input:focus,
.input_wrapper select:focus,
.input_wrapper textarea:focus {
  border-color: #222;
}


div.form_content:nth-of-type(4) .input_wrapper input {
  width: 100%;
}


div.form_content:last-of-type p {
  padding-top: 0;
}


.input_wrapper textarea {
  line-height: 1.42857;
  font-size: 16px;
  min-height: 150px;
  width: 100%;
}


.input_wrapper p.error {
  width: 100%;
  font-size: 16px;
  font-weight: normal;
  padding-top: 0;
}

@media screen and (max-width: 767px) {
  .input_wrapper textarea {
    width: 100%;
  }
}

.empty_space {
  /* height: 22px;
  clear: both; */
}

.form_checkbox {
  display: flex;
  font-size: 18px;
  font-weight: bold;
}

.form_checkbox:before {
  display: table;
  content: "";
}

.form_checkbox label {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: 500;
  /* gap: 8px; */
  /* float: left; */
  /* font-size: 16px; */
  /* line-height: 27px; */
  margin-right: 30px;
  position: relative;
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
  .input_wrapper {
    width: 70%;
  }

  .form_content p {
    width: 30%;
    font-size: 16px;
  }

  .form_checkbox label {
    font-size: 16px;
    margin-right: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .form_wrapper {
    padding: 40px 4%;
  }

  .form_inner {
    padding: 0 4%;
  }

}

@media screen and (min-width: 441px) {
  .up_440 {
    display: none;
  }
}


.form_checkbox input[type="checkbox"] {
  -webkit-appearance: none;
  /* フォーム要素のスタイルを初期化 */
  position: relative;
  margin-right: 8px;
}

.form_checkbox input[type="checkbox"]::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #456800;
  border-radius: 4px;
}

.form_checkbox input[type="checkbox"]:checked::before {
  background-color: #456800;
}

.form_checkbox input[type="checkbox"]::after {
  content: "";
  display: block;
  position: absolute;
  left: 25%;
  top: 25%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}


/* 
.res_box {
  width: 36%;
} */

@media screen and (max-width: 767px) {
  .res_box {
    width: 100%;
  }
}

.required {
  color: #d40707 !important;
  font-weight: normal;
  font-size: 12px;
}

.submit_btn {
  font-size: 16px;
  position: relative;
  border: 0 none;
  color: #fff;
  cursor: pointer;
  height: 48px;
  margin: 0;
  padding: 0 25px;
  background: #222;
  font-weight: 700;
  opacity: 0.8;
}

.error {
  color: red;
  width: 100%;
  font-size: 16px;
}

.submit_confirm {
  display: block;
  max-width: 424px;
  font-weight: 500;
  font-size: 22px;
  width: 100%;
  margin: 0 auto;
  background-color: #456800;
  color: #fff;
  height: 74px;
  border-radius: 10px;
  /* line-height: 74px; */
  border: none;
  border: 1px solid #456800;
  background-image: url(../img/form_arrow_icon.png);
  background-repeat: no-repeat;
  background-size: 18px 23px;
  background-position: right 20px center;
  box-shadow: 5px 6px 0px 0px rgb(0 0 0 / 10%);
  font-family: 'Noto Sans JP', sans-serif;
}

.check_priv_inner {
  display: flex;
  justify-content: center;
  /* max-width: 262px; */
  gap: 0 8px;
  margin: 0 auto 40px;
  font-size: 18px;
  flex-wrap: wrap;
}

.check_priv_inner input[type="checkbox"] {
  -webkit-appearance: none;
  /* フォーム要素のスタイルを初期化 */
  position: relative;
}

.check_priv_inner input[type="checkbox"]::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #456800;
  border-radius: 4px;
}

.check_priv_inner input[type="checkbox"]:checked::before {
  background-color: #456800;
}

.check_priv_inner input[type="checkbox"]::after {
  content: "";
  display: block;
  position: absolute;
  left: 25%;
  top: 25%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}


.check_priv_inner label {
  font-weight: 600;
}


.check_priv_inner label a {
  color: #456800;
  border-bottom: 1px solid #456800;
}

span.red_tag {
  display: inline-block;
  width: 52px;
  height: 26px;
  line-height: 26px;
  border-radius: 4px;
  background-color: #D64B53;
  color: #fff;
  font-weight: normal;
  text-align: center;
  margin-left: 6px;
}



@media screen and (max-width: 768px) {
  .form_content {
    flex-direction: column;
    align-items: flex-start;
  }

  .input_wrapper input,
  .input_wrapper select,
  .input_wrapper textarea {

    width: 100%;

  }

  .input_wrapper {
    width: 100%;
  }

  .form_content p {
    width: 100%;
    padding-top: 0;
  }

  .form_checkbox {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    width: 100%;
  }

  /* 
  .form_checkbox input[type="checkbox"] {
    display: block;
    margin-right: 8px;
  } */


  .form_checkbox label {
    margin-bottom: 16px;
  }


  .form_checkbox label:last-of-type {
    margin-bottom: 0px;
  }

  .form_checkbox label {
    gap: 0;
  }

  .form_checkbox label[for="honnin"] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }


  .check_priv_inner {
    gap: 0px;
    max-width: 100%;
  }

  /* 
  .check_priv_inner label a {
    display: inline-block;
    margin-left: 8px;
  } */


  .form_checkbox label span {
    display: inline-block;
    margin-left: 8px;
  }

  .check_priv_inner label {
    display: block;
    margin-left: 8px;
  }
}

@media screen and (max-width: 440px) {

  .error {
    font-size: 14px;
  }

  .input_wrapper p.error {
    font-size: 14px;
  }
}



#contact_form_btn_confirm {
  display: flex;
  justify-content: space-between;
  margin-top: 60px
}


#contact_form_btn_confirm form {
  width: 48%;
}

#contact_form_btn_confirm form input {
  width: 100%;
  height: 74px;
  line-height: 74px;
  border-radius: 10px;
  border: 1px solid #456800;
  font-size: 22px;
  font-weight: 500;
  box-shadow: 5px 6px 0px 0px rgb(0 0 0 / 10%);
  background-repeat: no-repeat;
  background-size: 24px 27px;
  font-family: 'Noto Sans JP', sans-serif;
}


#contact_form_btn_confirm form:first-of-type input {
  background-color: #fff;
  color: #456800;
  background-image: url(../img/form_arrow_icon_left.png);
  background-position: 20px center;
  background-size: 18px 23px
}


#contact_form_btn_confirm form:nth-of-type(2) input {
  background-color: #456800;
  color: #fff;
  background-image: url(../img/form_arrow_icon.png);
  background-position: right 20px center;
  background-size: 18px 23px
}

#contact_form_btn_confirm form:nth-of-type(2) input:hover {
  opacity: .5;
  transition: .3s ease-in-out;
}


#contact_form_btn_confirm form:first-of-type input:hover {
  background-color: #456800;
  color: #fff;
  transition: .3s ease-in-out;
}


@media screen and (max-width: 768px) {

  #contact_form_btn_confirm {
    flex-direction: column;
    margin-top: 40px;
  }

  #contact_form_btn_confirm form {
    width: 100%;
  }


  #contact_form_btn_confirm form input {
    height: 54px;
    line-height: 54px;
    font-size: 18px;
  }

  #contact_form_btn_confirm form:first-of-type input {
    margin-bottom: 20px;
    background-image: url(../img/footer_logo_arrow_left_sp.png);
    background-size: 10px 14px;
  }

  #contact_form_btn_confirm form:nth-of-type(2) input {
    background-image: url(../img/footer_logo_arrow.png);
    background-size: 10px 14px;
  }
}




/*----------------------------------------------------- */
/*  form 外部         */
/*----------------------------------------------------- */

.Shuei_font {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
}

.contact_order h2 {
  font-size: 28px;
  letter-spacing: 0.1em;
  margin-bottom: .5rem;
  line-height: 1;
}

.contact_order h3 {
  font-size: 12px;
  letter-spacing: 0.1em;
  font-family: 'Kumbh Sans', sans-serif;
}

.contact_order {
  padding: 60px 0 0;
  background: #e2eade;
}


.contact_order_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 816px;
  margin: 60px auto 0;
  box-sizing: content-box;
  padding: 0 4%;
}


.contact_order_checked {
  background-color: #fff;
  border-radius: 20px;
}

.contact_order_list li:nth-of-type(odd) {
  width: 25%;
}

.contact_order_list li:nth-of-type(even) {
  width: 12.5%;
  background-image: url(../img/contact_arrow.png);
  background-repeat: no-repeat;
  background-size: 24px 27px;
  background-position: center;
}


.contact_order_list li {
  max-height: 104px;
  padding: 16px 0 2% 16px;
}


.contact_order_list li table {
  width: 100%;
}


.contact_order_list li table th span {
  font-size: 50px;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
}


.contact_order_list li table td {
  font-size: 28px;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
}

.contact_order_list li table th,
.contact_order_list li table td {
  width: 50%;
  color: #456800;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.1;
}


.contact_order_list li table th {
  border-right: 1px solid #456800;
  line-height: 1;
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 768px) {
  .contact_order h2 {
    font-size: 22px;
  }

  .contact_order h3 {
    font-size: 10px;
  }

  .contact_order h2,
  .contact_order h3 {
    color: #6B4A3C;
  }

  .contact_order_list {
    margin: 40px auto 0;
    /* padding: 0 4%; */
  }



  .contact_order_list li:nth-of-type(odd) {
    width: 23%;
  }

  .contact_order_list li:nth-of-type(even) {
    width: 15.5%;
  }


  .contact_order_list li table tr {
    display: flex;
    flex-direction: column;
  }


  .contact_order_list li table th,
  .contact_order_list li table td {
    width: 56%;
    border: none;
    margin: 0 auto;
  }

  .contact_order_list li {
    padding: 11px 0;
  }

  .contact_order_list li table td {
    font-size: 20px;
    line-height: 1;
    padding-top: 10px;
  }


  .contact_order_list li table th {
    font-size: 11px;
    border-bottom: 1px solid #456800;
    padding-bottom: 8px;
  }

  .contact_order_list li table th span {
    font-size: 30px;
  }

  .contact_order_list li:nth-of-type(even) {
    background-size: 16px 18px;
  }

  .submit_confirm {
    font-size: 18px;
    height: 54px;
    /* line-height: 54px; */
    background-image: url(../img/footer_logo_arrow.png);
    background-size: 10px 14px;
  }
}


/*----------------------------------------------------- */
/*  form 確認         */
/*----------------------------------------------------- */

table.form_confirm_inner tr:first-of-type {
  border-spacing: 0;
}


table.form_confirm_inner th {
  width: 30%;
  font-size: 18px;
  font-weight: bold;
}

table.form_confirm_inner td {
  width: 70%;
  /* font-weight: bold; */
  font-weight: 500;
  word-break: break-all;
}

table.form_confirm_inner th,
table.form_confirm_inner td {
  padding-bottom: 60px;
}

table.form_confirm_inner tr:nth-of-type(4) th,
table.form_confirm_inner tr:nth-of-type(4) td {
  display: none;
}

table.form_confirm_inner tr:last-of-type th,
table.form_confirm_inner tr:last-of-type td {
  padding-bottom: 0px;
  vertical-align: top;
}

.form_confirm_area {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}

.form_confirm_area button {
  width: 48%;
  height: 74px;
  line-height: 74px;
  border-radius: 10px;
  border: 1px solid #456800;
  font-size: 22px;
  font-weight: 500;
  box-shadow: 5px 6px 0px 0px rgb(0 0 0 / 10%);
  background-repeat: no-repeat;
  background-size: 24px 27px;
  font-family: 'Noto Sans JP', sans-serif;
}


.form_confirm_area button:first-of-type {
  background-color: #fff;
  color: #456800;
  background-image: url(../img/form_arrow_icon_left.png);
  background-position: 20px center;
  background-size: 18px 23px;
}

.form_confirm_area button:first-of-type:hover {
  background-color: #456800;
  color: #fff;
  transition: .3s ease-in-out;
}

.form_confirm_area button:nth-of-type(2) {
  background-color: #456800;
  color: #fff;
  background-image: url(../img/form_arrow_icon.png);
  background-position: right 20px center;
  background-size: 18px 23px;
}

@media screen and (max-width: 768px) {

  table.form_confirm_inner tr {
    display: flex;
    flex-direction: column;
  }

  table.form_confirm_inner th {
    padding-bottom: 15px;
    width: 100%;
  }

  table.form_confirm_inner td {
    padding-bottom: 30px;
    width: 100%;
  }

  .form_confirm_area {
    flex-direction: column;
    margin-top: 40px;
  }

  .form_confirm_area button {
    width: 100%;
  }


  .form_confirm_area button:first-of-type {
    margin-bottom: 20px;
    background-image: url(../img/footer_logo_arrow_left_sp.png);
    background-size: 10px 14px;
  }

  .form_confirm_area button {
    height: 54px;
    line-height: 54px;
    font-size: 18px;
    background-size: 16px 18px;
  }

  table.form_confirm_inner tr:last-of-type th {
    padding-bottom: 15px;
  }

  .form_confirm_area button:nth-of-type(2) {
    background-image: url(../img/footer_logo_arrow.png);
    background-size: 10px 14px;
  }
}


/*----------------------------------------------------- */
/*  form 完了        */
/*----------------------------------------------------- */

#form_complete {
  text-align: center;
  font-size: 18px;
}

#form_complete address {
  margin: 20px 0 40px;
  font-weight: bold;
}

#form_complete .form_complete_btn a {
  display: block;
  max-width: 424px;
  margin: 0 auto;
  background-color: #456800;
  border-radius: 10px;
  color: #fff;
  height: 74px;
  line-height: 74px;
  font-size: 22px;
  box-shadow: 5px 6px 0px 0px rgb(0 0 0 / 10%);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
}

@media screen and (max-width: 768px) {

  #form_complete .form_complete_btn a {
    height: 54px;
    line-height: 54px;
    font-size: 18px;
  }
}

@media screen and (max-width: 440px) {

  #form_complete {
    text-align: left;
  }

  #form_complete p:nth-of-type(2) {
    margin: 20px 0;
  }

  #form_complete .form_complete_btn a {
    text-align: center;
  }

}