/* 共通
-------------------------------------*/
.l-content {
  background-color: transparent;
}

#content-wrap {
  width: 90%;
  max-width: 1000px;
  padding: 0 0 300px;
}

@media screen and (max-width:768px) {
  #content-wrap {
    padding-bottom: 200px;
  }
}

/* head-area
-------------------------------------*/
#head-area-common {
  margin-bottom: 100px;
}

#head-area-common .inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

#head-area-common h1 {
  font-family: var(--mincho-font_family);
}

@media screen and (max-width:768px) {
  #head-area-common {
    margin-bottom: 50px;
  }

  #head-area-common h1 {
    font-size: 30px;
  }
}

/* お問い合わせフォーム
-------------------------------------*/
form {
  margin-top: 80px;
  margin-bottom: 70px;
}

form .label-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 0px;
  border-top: solid 1px #CCC;
}

form .label-wrap label {
  width: 280px;
}

form .label-wrap label span.title {
  font-size: 20px;
  font-weight: 700;
}

form .label-wrap label span.req {
  color: #900;
}

form .label-wrap span.wpcf7-form-control-wrap {
  width: calc(100% - 280px);
}

form .label-wrap input,
form .label-wrap textarea {
  width: 100%;
  background-color: #F5F5F5;
  border: solid 1px #A6A6A6;
  border-radius: 5px;
}

form .label-wrap .mail-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

form .label-wrap .mail-content:last-of-type {
  margin-bottom: 15px;
}

form .submitWrap {
  margin-top: 30px;
  text-align: center;
}

form .wpcf7-spinner {
  display: none;
}

form .wpcf7-response-output {
  color: #dc3232;
  text-align: center;
  border: none !important;
}

form .privacy-check {
  padding: 30px 70px;
  margin-top: 20px;
  margin-bottom: 50px;
  background-color: #F6F2E7;
  border: solid 1px var(--base-color);
  border-radius: 10px;
}

form .privacy-check h4 {
  margin-top: 0 !important;
  margin-bottom: 15px !important;
  text-align: center;
}

form .privacy-check p a {
  color: var(--base-color);
  text-decoration: underline;
  text-underline-offset: 2px;
}

form .privacy-check .check-box {
  margin-top: 50px;
  text-align: center;
}

form .privacy-check .check-box input[type="checkbox"] {
  width: 30px;
  height: 30px;
}

form .privacy-check .check-box label {
  display: flex;
  align-items: center;
}

form .privacy-check .check-box label span {
  position: relative;
  bottom: 2px;
  padding-left: 18px;
}

form p.coution {
  font-size: 25px;
  font-weight: 700;
  text-align: center;
}

form [type=submit] {
  min-width: 260px;
  padding: 15px;
  background-color: var(--base-color);
  color: #FFF;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
  transition: all .5s ease;
}

form [type=submit]:hover {
  background-color: #000;
}

@media screen and (max-width:768px) {
  form {
    margin-bottom: 30px;
  }

  form .label-wrap label {
    width: 100%;
    margin-bottom: 10px;
  }

  form .label-wrap label span.title {
    font-size: 16px;
  }

  form .label-wrap span.wpcf7-form-control-wrap {
    width: 100%;
  }

  form .privacy-check {
    padding: 20px;
  }

  form .privacy-check .check-box {
    margin-top: 30px;
  }

  form p.coution {
    font-size: 16px;
  }

  form [type=submit] {
    padding: 8px 15px;
    font-size: 16px;
  }
}