@charset "utf-8";
/* CSS Document */
/* ---------- タイトル ---------- */
.page-title__inner {
  margin: 220px 0 120px;
}
.page-title__sub {
  text-align: center;
  margin-bottom: 20px;
}
.page-title_sub .contact img {
  width: 120px;
}
.page-title__main {
  text-align: center;
  display: block;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) { /* SP */
  .page-title__inner {
    margin: 140px 0 90px;
  }
  .page-title__sub {
    margin-bottom: 5px;
  }
  .page-title__sub .contact img {
    width: 86px;
  }
  .page-title__main {
    font-size: 1.5rem;
  }
}
/* ---------- お問い合わせページ ---------- */
.page-container-contact {
  max-width: 900px;
  margin: 0 auto;
}
.section-contact {
  margin-bottom: 160px;
}
.mb-60 {
  margin-bottom: 60px;
  text-align: center;
  line-height: 2rem;
}
/* ----- LINEで無料相談する ----- */
.section-contact__line {
  background-color: #4CC764;
  padding: 60px;
  text-align: center;
  border-radius: 40px;
  width: 100%;
  margin-bottom: 120px;
}
.section-contact__line-title {
  margin-bottom: 14px;
  line-height: 0;
}
.section-contact__line-text {
  color: #fff;
}
div.section-contact__line-btn {
  margin-top: 30px;
}
div.section-contact__line-btn a {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  display: block;
  padding: 18px 0;
  background-color: #fff;
  width: 310px;
  margin: 0 auto;
}
div.section-contact__line-btn a span {
  color: #4CC764;
  font-weight: 700;
}
div.section-contact__line-btn a span::before {
  display: inline-block;
  content: "";
  margin-top: -5px;
  background-image: url("../images/LINE-logo.svg");
  width: 24px;
  height: 24px;
  margin-right: 13px;
  vertical-align: middle;
}
/* ----- メールフォーム ----- */
.form__title {
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 21px;
}
.form__description {
  text-align: center;
}
.form__description span {
  color: #E05504;
}
.form-container {
  margin-top: 60px;
}
.form-item {
  margin-bottom: 30px;
}
.form-item__title {
  font-weight: 700;
  margin-bottom: 15px;
}
.form-item__title.is_required:after {
  color: #E05504;
  font-weight: 700;
  content: "※";
  padding-left: 5px;
}
::placeholder {
  color: #A99697;
}
/* --- 氏名・ふりがな・電話番号・施工希望時期・予算 --- */
.form-item input[type="text"] {
  width: 100%;
  font-weight: 500;
  padding: 21px 36px;
  box-sizing: border-box;
  background: #FFF;
  border-radius: 10px;
}
/* --- メールアドレス・メールアドレス（確認用）--- */
.form-item input[type="email"] {
  width: 100%;
  font-weight: 500;
  padding: 21px 36px;
  box-sizing: border-box;
  background: #FFF;
  border-radius: 10px;
}
/* --- お問い合わせ種別 --- */
input[type="radio"] {
  width: 30px; /*radioボタンの横幅*/
  height: 30px; /*radioボタンの縦幅*/
  border-radius: 100px;
  position: relative;
  vertical-align: sub;
  margin-right: 10px;
  border: 2px solid #DDD5D5;
  background-color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input [type="radio"]::before, input[type="radio"]::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
input[type="radio"]::before {
  background-color: #fff;
  border: 2px solid #552E31;
  height: 30px; /*radioボタンの横幅*/
  width: 30px; /*radioボタンの縦幅*/
  left: 0px;
}
input[type="radio"]::after {
  background-color: #552E31;
  opacity: 0; /*チェックされてないradioボタンは非表示*/
  height: 14px; /*radioボタンチェック時の中点の高さ*/
  width: 14px; /*radioボタンチェック時の中点の横幅*/
  left: 7px; /*radioボタンチェック時の中点の位置*/
}
input[type="radio"]:checked {
  border: 2px solid #552E31;
}
input[type="radio"]:checked::after {
  opacity: 1; /*チェックされたradioボタンは表示*/
}
.mwform-radio-field-text {
  vertical-align: super;
  font-weight: 500;
}
/* --- お問い合わせ内容 --- */
.form-item textarea {
  width: 100%;
  padding: 21px 30px 25px;
  box-sizing: border-box;
  border-radius: 10px;
  background: #fff;
}
.form-item.c__text {
  margin-bottom: 60px;
}
/* --- プライバシーポリシーへ --- */
.form-item.pp__bg {
  background-color: #DDD5D5;
  border-radius: 10px;
  padding: 30px 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}
.mwform-checkbox-field-text {
  font-weight: 500;
  text-align: center;
  vertical-align: unset;
}
.mwform-checkbox-field-text:after {
  color: #E05504;
  font-weight: 700;
  content: "※";
  padding-left: 5px;
  vertical-align: baseline;
}
.pp__is_required-sp {
  display: none;
}
input[type="checkbox"] {
  position: relative;
  height: 25px;
  width: 25px;
  display: inline-block;
  border-radius: 5px;
  background: #fff;
  -webkit-appearance: none;
  appearance: none;
  vertical-align: -webkit-baseline-middle;
  margin-top: -10px;
}
input[type="checkbox"]:checked {
  border: none;
  width: 25px;
  height: 25px;
  background-image: url("../images/checkbox.svg");
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: center center;
}
.underline {
  text-decoration: underline;
}
/* --- 確認画面へ --- */
.check-btn {
  width: 310px;
  height: 60px;
  margin: 0 auto;
}
.button01 {
  color: #fff;
  font-weight: 700;
  background: #552E31;
  width: 100%;
  height: 60px;
  text-align: center;
  border-radius: 100vh;
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  transition: .3s;
}
.button01::before {
  content: "";
  width: 120%;
  height: 200%;
  position: absolute;
  top: -50%;
  right: 0;
  z-index: -1;
  background: #E05504;
  border-radius: 0 100% 100% 0;
  transform: translateX(-100%);
  transition: transform ease .5s;
}
.button01:hover {
  color: #fff;
}
.button01:hover::before {
  transform: translateX(10%);
}
@media screen and (max-width: 1200px) {
  .page-container-contact {
    padding: 0 30px;
  }
}
@media screen and (max-width: 768px) { /* SP */
  .mb-60 {
    margin-bottom: 40px;
  }
  /* ----- LINEボタン ----- */
  .section-contact__line {
    margin-bottom: 90px;
  }
  div.section-contact__line-btn a {
    padding: 17px 0;
    width: 235px;
  }
  div.section-contact__line-btn a span::before {
    margin-right: 12px;
  }
  /* ----- メールフォーム ----- */
  .form__title {
    font-size: 1.25rem;
  }
  .form-container {
    margin-top: 40px;
  }
  .form-item__title {
    margin-bottom: 10px;
  }
  .form-item__title.is_required:after {
    color: #E05504;
    font-weight: 700;
    content: "※";
    padding-left: 5px;
  }
  /* --- 氏名・ふりがな・電話番号・施工希望時期・予算 --- */
  .form-item input[type="text"] {
    padding: 15px 25px;
  }
  /* --- メールアドレス・メールアドレス（確認用）--- */
  .form-item input[type="mail"] {
    padding: 15px 25px;
  }
  /* --- お問い合わせ内容 --- */
  .form-item textarea {
    padding: 16px 25px 21px;
  }
  .form-item.c__text {
    margin-bottom: 40px;
  }
  /* --- プライバシーポリシーへ --- */
  .form-item.pp__bg {
    padding: 25px 30px;
    margin-bottom: 50px;
  }
  input[type="checkbox"] {
    margin-top: 10px;
  }
  .mwform-checkbox-field-text {
    text-indent: -10px;
    padding-left: 10px;
    text-align: left;
    display: inline-grid;
  }
  .mwform-checkbox-field-text:after {
    display: none;
  }
  .pp__is_required-sp {
    display: block;
    margin-top: -5px;
    font-weight: 700;
    color: #E05504;
    padding-left: 5px;
    line-height: 0;
  }
  /* --- 確認画面へ --- */
  .check-btn {
    width: 210px;
  }
}
/* ---------- お問い合わせページ（エラー） ---------- */
.form__error-title {
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 21px;
}
.form__error-description {
  text-align: center;
}
@media screen and (max-width: 768px) { /* SP */
  .form__error-title {
    font-size: 1.25rem;
  }
}
/* ---------- お問い合わせページ（送信完了） ---------- */
.form__thanks-title {
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 21px;
}
.form__thanks-description {
  text-align: center;
}
@media screen and (max-width: 768px) { /* SP */
  .form__thanks-title {
    font-size: 1.25rem;
  }
}