@charset "UTF-8";

* {
  box-sizing: border-box;
}

/* ------------------------------------------------------------ */
/* contact  お問い合わせ */
/* ------------------------------------------------------------ */
#check,
#check02 {
  display: none;
  color: #ec6717;
}

.contact .pagetit {
  background-size: contain;
}

.contact .pageArea .whArea h4 {
  font-size: 22px;
  text-align: center;
  margin-bottom: 30px;
}

.contact .formArea {
  padding: 40px 0 0;
}

.formArea h4 {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  padding: 10px 0;
  border-top: 2px solid #295234;
  border-bottom: 2px solid #295234;
  color: #295234;
  margin-bottom: 40px;
}

.contact .formArea dl {
  width: 100%;
  display: table;
  padding: 20px 0;
}

.contact .formArea dt,
.contact .formArea dd {
  display: table-cell;
  font-size: 1em;
}

.contact .formArea dt {
  width: 35%;
  padding-right: 15px;
  font-weight: 600;
  font-size: 18px;
  color: #295234;
  line-height: 1.7;
}

.contact .formArea dd {
  width: 65%;
}

.contact span.required,
.contact span.note {
  line-height: 1.2;
  display: inline-block;
  margin: 0 1em;
  font-size: 12px;
  font-weight: normal;
  text-align: center;
  border-radius: 3px;
  vertical-align: middle;
}

.contact span.required {
  color: #fff;
  background: #ec6717;
  padding: 2px 8px;
}

.contact span.note {
  color: #fff;
  background: #295234;
  padding: 4px 8px;
}

.contact p.notice {
  padding: 15px;
  line-height: 1.6;
  border: 3px solid #295234;
  background: #fff;
  margin-bottom: 20px;
}

.contact p.error_messe {
  margin-bottom: 15px;
  font-size: 14px;
  color: #ec6717;
}

.contact .formArea dd span.choice {
  display: block;
  margin-bottom: 10px;
}

.contact .formArea dd p.other {
  padding: 10px 0;
}

.contact .formArea dd label {
  display: inline-block;
}

/* 25/6/6 追加 */
.formArea dd:has(.form-field) {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
}

.form-field {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: fit-content;
  gap: 10px;
  margin: 0 30px 10px 0;
}

.form-field:last-of-type {
  width: 100%;
}

.form-ttl {
  display: flex;
  align-items: center;
  /* flex-basis: calc(50% - 5px); */
  /* width: 100%; */
}

.form-input {
  display: flex;
  align-items: center;
  /* flex-basis: calc(50% - 5px); */
  /* width: 100%; */
}

.contact .input-num {
  width: 60px;
}


.contact input,
.contact select,
.contact textarea {
  width: 100%;
  padding: 12px 10px;
  font-size: 1em;
  background: #fff;
  margin: 0 5px;
  border: 2px solid #295234;
  border-radius: 0;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.contact input.sizeS {
  width: 35%;
}

.contact input[type="radio"],
.contact input[type="checkbox"] {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid #295234;
  background: none;
  padding: 0;
  position: relative;
  margin: 3px 5px 5px;
}

.contact input[type="radio"]:checked:after,
.contact input[type="checkbox"]:checked:after {
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  font-size: 11px;
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  color: #6fb64b;
  position: absolute;
  z-index: 10;
}

.contact input[type="checkbox"]:checked:after,
.contact input[type="radio"]:checked:after {
  content: "\f00c";
  bottom: 1px;
  left: 2px;
  font-size: 14px;
}

.contact textarea {
  vertical-align: top;
}

.contact input[type="submit"],
.contact input[type="reset"],
.contact input[type="button"],
.contact a.btn {
  display: inline-block;
  padding: 8px 10px;
  color: #295234;
  border: 2px solid #295234;
  background: #fff;
  margin: 0 10px 10px;
  width: 150px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.contact a.btn {
  width: auto;
}

.contact input[type="submit"],
.contact input[type="button"],
.contact a.btn {
  color: #fff;
  background: #295234;
}

.contact input[type="submit"]:hover,
.contact input[type="button"]:hover,
.contact a.btn:hover {
  color: #295234;
  background: #fff;
}

.contact .submitBox {
  text-align: center;
  padding: 60px 0 0;
}

.contact input[type="reset"]:hover,
.contact input[type="button"]:hover {
  color: #fff;
  background: #295234;
}

@media screen and (max-width: 1024px) {
  /* 1024px以下用（タブレット用）の記述 */

  .contact .pageArea .whArea {
    padding: 5%;
  }

  .contact p.notice {
    padding: 10px;
    font-size: 14px;
  }

  .contact .formArea dt {
    padding-right: 5px;
  }

  .contact .formArea dt,
  .contact .formArea dd {
    font-size: 14px;
    vertical-align: middle;
  }

  .contact input,
  .contact select,
  .contact textarea {
    padding: 10px 8px;
    font-size: 14px;
  }

  .contact .formArea dl {
    padding: 17px 0;
  }

}

@media screen and (max-width: 768px) {
  .formArea h4 {
    font-size: 20px;
    padding: 12px 0;
  }


}

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

  /* 479px以下用（スマートフォン用）の記述 */
  .contact .formArea dl {
    border-bottom: 2px solid #efefef;
  }

  .contact .formArea dt,
  .contact .formArea dd {
    display: block;
    width: 95%;
  }

  .contact .formArea dt {
    padding: 0;
    margin-bottom: 7px;
  }

  .form-field {
    width: 100%;
  }

  .contact .formArea .submitBox {
    border-bottom: none;
    padding: 20px 0 0;
  }
}