@charset "UTF-8";
/* ----------------------------------------------------------------
 extend
----------------------------------------------------------------- */
.inner, .btnarea, .form__errorbox, .form, .lead {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
}

/* ----------------------------------------------------------------
 Contents
----------------------------------------------------------------- */
body {
  position: relative;
}

.mv {
  height: 313px;
  padding-top: 100px;
  background-image: url(../img/contact_mv_bg.webp);
  background-position: top center;
  text-align: center;
}
.no-webp .mv {
  background-image: url(../img/contact_mv_bg.png);
}
.mv__txt {
  font-size: 38px;
  font-family: "Montserrat Bold";
  color: #72522e;
}
.mv__txt > span {
  display: block;
  margin-top: 11px;
  font-size: 15px;
  font-family: "Noto Sans JP Medium";
}
.mv::before {
  content: "";
  display: block;
  width: 54px;
  height: 54px;
  margin: 0 auto 6px;
  background: url(../img/contact_hdg_icon.svg) top left repeat;
  background-size: contain;
}

.hdg01 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: bold;
  color: #dd7403;
}

.lead {
  padding: 40px 0 43px;
  line-height: 1.9;
  text-align: center;
  color: #382e27;
}
.lead__mail, .lead__tel {
  margin: 0 5px;
  font-weight: bold;
}
.lead__mail img, .lead__tel img {
  vertical-align: -1px;
}
.lead__br-sp {
  display: none;
}

.form input[type=text], .form textarea, .form select,
.form input[type=number],
.form input[type=tel],
.form input[type=email] {
  width: 100%;
  height: 50px;
  margin-bottom: 10px;
  color: #111;
  background-color: #f9f7fa;
  border: solid 1px #bec2cb;
  border-radius: 5px;
  padding: 10px;
}
.form input[type=text].error, .form textarea.error, .form select.error,
.form input[type=number].error,
.form input[type=tel].error,
.form input[type=email].error {
  border: solid 2px #d31c25;
}
.form input[type=checkbox], .form textarea[type=checkbox], .form select[type=checkbox] {
  opacity: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  position: absolute;
}
.form input[type=checkbox] + span::before, .form textarea[type=checkbox] + span::before, .form select[type=checkbox] + span::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 9px 0 5px;
  vertical-align: -1px;
  background: url("../img/form_checkbox.svg") left top no-repeat;
  background-size: cover;
}
.form input[type=checkbox]:checked + span::before, .form textarea[type=checkbox]:checked + span::before, .form select[type=checkbox]:checked + span::before {
  background-image: url("../img/form_checkbox_checked.svg");
}
.form select {
  background: url(../img/form_selectbox_icon.svg) right 15px center no-repeat #f9f7fa;
}
.form select.error {
  border: solid 2px #d31c25;
}
.form label {
  display: inline-block;
  margin: 0 9px 10px 0;
  font-size: 18px;
  cursor: pointer;
}
.form label.error {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #d31c25;
}
.form label.error#privacy-error {
  text-align: left;
  margin-left: 35px;
}
.form textarea {
  height: 250px;
}
.form__list {
  max-width: 917px;
  margin: 0 auto 35px;
  display: flex;
  flex-wrap: wrap;
  border-top: solid 1px #bec2cb;
}
.form__list__term {
  width: 34%;
  padding: 30px 0 20px 46px;
  font-size: 18px;
  position: relative;
}
.form__list__term span {
  display: block;
  margin-top: 5px;
  font-size: 14px;
}
.form__list__term-required::after {
  content: "必須";
  position: absolute;
  top: 30px;
  right: 20px;
  height: 20px;
  padding: 0 10px;
  line-height: 20px;
  font-size: 14px;
  color: #fff;
  background-color: #d31c25;
  border-radius: 5px;
}
.form__list__term-low {
  padding-top: 17px;
}
.form__list__term-low::after {
  top: 17px;
}
.form__list__term::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #c6cad1;
}
.form__list__desc {
  width: 66%;
  padding: 19px 3px 10px 0;
  position: relative;
}
.form__list__desc::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #c6cad1;
}
.form__list-confirm {
  line-height: 1.9;
}
.form__list-confirm .form__list__term {
  padding-top: 10px;
  padding-bottom: 10px;
}
.form__list-confirm .form__list__term > span {
  margin-top: -4px;
}
.form__list-confirm .form__list__desc {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 18px;
}
.form__privacy {
  text-align: center;
}
.form__privacy__textbox {
  width: 915px;
  height: 190px;
  max-width: 100%;
  margin: 0 auto 25px;
  background-color: #f9f7fa;
  border-radius: 5px;
  border-style: solid;
  border-width: 18px 20px;
  border-color: #f9f7fa;
  padding: 3px 10px 3px 3px;
  font-size: 18px;
  text-align: left;
  line-height: 1.65;
  overflow-x: hidden;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #382e27 #f0f0f0;
}
.form__privacy__textbox::-webkit-scrollbar {
  width: 5px;
}
.form__privacy__textbox::-webkit-scrollbar-track {
  background: #f0f0f0;
}
.form__privacy__textbox::-webkit-scrollbar-thumb {
  background-color: #382e27;
  border-radius: 0px;
  border: 0px solid #ffffff;
}
.form__privacy__textbox ol {
  list-style-type: decimal;
  margin: 0 0 1.5em 1.75em;
}
.form__privacy input[type=checkbox] + span::before, .form__privacy .form select[type=checkbox] + span::before, .form .form__privacy select[type=checkbox] + span::before, .form__privacy .form textarea[type=checkbox] + span::before, .form .form__privacy textarea[type=checkbox] + span::before {
  width: 20px;
  height: 20px;
  margin: 0px 15px 0 0px;
  vertical-align: -4px;
}
.form__privacy label {
  font-weight: bold;
  line-height: 1.7;
}
.form__privacy label br {
  display: none;
}
.form__errorbox {
  max-width: 917px;
  margin: 0 auto 30px;
  padding: 20px;
  text-align: center;
  color: #d31c25;
  border: solid 2px #d31c25;
}

.btnarea {
  margin-top: 57px;
  margin-bottom: 80px;
  text-align: center;
  letter-spacing: -1em;
}
.btnarea__btn {
  display: inline-block;
  width: 310px;
  height: 75px;
  font-size: 22px;
  font-weight: bold;
  line-height: 75px;
  border-radius: 38px;
  color: #fff;
  background: url(../img/btn_arrow_02_w.svg) right 15px center no-repeat;
  letter-spacing: normal;
  transition: opacity 0.3s ease;
}
.btnarea__btn:not(:disabled):hover {
  opacity: 0.8;
}
.btnarea__btn:not(:last-child) {
  margin-right: 30px;
}
.btnarea__btn-confirm, .btnarea__btn-send, .btnarea__btn-top {
  background-color: #dd7403;
}
.btnarea__btn-correct {
  background-color: #bfbfbf;
}
.btnarea__btn:disabled {
  background-color: #bfbfbf;
}

.sns {
  margin-top: 35px;
  text-align: center;
}
.sns__list {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 30px;
}
.sns__list__icon {
  width: 44px;
}

.pagetop__icon {
  position: fixed;
  bottom: 30px;
  right: calc(50% - 555px);
  transition: opacity 0.3s ease;
  cursor: pointer;
  z-index: 1;
}
.pagetop__icon:hover {
  opacity: 0.8;
}
.pagetop__icon-bottom {
  position: absolute;
  bottom: 159px;
}

.footer {
  background-color: #dd7403;
}

/* ----------------------------------------------------------------
 Tablet
----------------------------------------------------------------- */
@media screen and (max-width: 1169px) {
  .pagetop__icon {
    right: 30px;
  }
}
@media screen and (max-width: 1023px) {
  .form__list__term {
    padding-left: 0;
  }
}
/* ----------------------------------------------------------------
 SP
----------------------------------------------------------------- */
@media screen and (max-width: 767px) {
  /* extend */
  .inner-sp, .form, .lead {
    padding-left: 10px;
    padding-right: 10px;
  }
  .mv {
    height: 192px;
    padding-top: 33px;
    background-size: 253px;
  }
  .mv::before {
    width: 50px;
    height: 50px;
  }
  .mv__txt {
    font-size: 35px;
  }
  .lead {
    padding-top: 21px;
    padding-bottom: 32px;
  }
  .lead__pc {
    display: none;
  }
  .lead__br-sp {
    display: block;
  }
  .lead .hdg01 {
    letter-spacing: -1px;
  }
  .form input[type=checkbox] + span::before, .form select[type=checkbox] + span::before, .form textarea[type=checkbox] + span::before {
    margin: 0 10px 0 2px;
  }
  .form textarea {
    height: 173px;
    margin-bottom: 17px;
  }
  .form label {
    margin: 0px 15px 7px 0;
  }
  .form__list {
    margin-bottom: 25px;
  }
  .form__list__term {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 18px;
         column-gap: 18px;
    width: 100%;
    padding: 14px 0 10px;
  }
  .form__list__term::before {
    display: none;
  }
  .form__list__term::after {
    position: static;
    display: inline-block;
  }
  .form__list__term-low {
    padding-bottom: 17px;
  }
  .form__list__term span {
    display: inline;
  }
  .form__list__term br {
    display: none;
  }
  .form__list__desc {
    width: 100%;
    padding: 0 0 5px;
  }
  .form__list-confirm .form__list__term {
    padding-top: 8px;
    padding-bottom: 0;
  }
  .form__list-confirm .form__list__desc {
    padding-top: 3px;
    padding-bottom: 8px;
  }
  .form__privacy__textbox {
    height: 245px;
    margin-bottom: 20px;
    border-width: 18px 9px;
  }
  .form__privacy label {
    text-align: left;
    text-indent: -32px;
    margin-left: 52px;
  }
  .form__privacy label br {
    display: block;
  }
  .btnarea {
    margin-top: 24px;
    margin-bottom: 53px;
  }
  .btnarea__btn {
    width: 279px;
    height: 55px;
    font-size: 18px;
    line-height: 55px;
    background-position: right 30px center;
  }
  .btnarea__btn:not(:last-child) {
    margin-right: 12px;
  }
  .btnarea__btn-send, .btnarea__btn-correct {
    width: 170px;
    background-position: right 15px center;
  }
  .btnarea__btn-top {
    width: 310px;
  }
  .sns {
    margin: 13px 0 60px;
  }
  .pagetop__icon {
    width: 30px;
    height: 30px;
    bottom: 15px;
    right: 12px;
  }
  .pagetop__icon-bottom {
    bottom: calc(9vw + 95px);
  }
}
@media screen and (max-width: 374px) {
  .btnarea__btn-send, .btnarea__btn-correct {
    width: 150px;
  }
}
/*# sourceMappingURL=contact.css.map */