@charset "UTF-8";
/**************************************/
/* -------------------------
 * 共通
 * ------------------------- */
/* 改行 */
.br-sp {
  display: none;
}

@media (max-width: 834px) {
  .br-sp {
    display: block;
  }
}
.no-br-sp {
  display: block;
}

@media (max-width: 834px) {
  .no-br-sp {
    display: none;
  }
}
/* フォントサイズ */
.f34 {
  font-size: 3.4rem;
}

@media (max-width: 1667px) {
  .f34 {
    font-size: 2.9rem;
  }
}
@media (max-width: 834px) {
  .f34 {
    font-size: 1.925rem;
  }
}
.fclg {
  color: #8aa698;
}

.wpcf7 form .wpcf7-response-output {
  border: none;
}

/* -------------------------
 * common
 * ------------------------- */
.contact__table input[type=text],
.contact__table input[type=email],
.contact__table input[type=tel],
.contact__table textarea {
  width: 100%;
  padding: 12px 20px;
  font-size: 1.5rem;
  font-weight: 300;
  color: #222222 !important;
  border: none;
  background: #f7f7f7;
  line-height: 1.6;
  border-radius: 3px;
}

@media (max-width: 834px) {
  .contact__table dd input[type=text],
  .contact__table dd input[type=email],
  .contact__table dd input[type=tel],
  .contact__table dd textarea {
    font-size: 1.5rem;
  }
}
.contact__table input::placeholder,
.contact__table textarea::placeholder {
  font-family: "Noto Sans JP", serif;
  font-weight: 300;
  color: #dadada;
}

/* Chromeオートフィル対策 */
input:-webkit-autofill,
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #f7f7f7 inset !important;
  -webkit-text-fill-color: #224e45 !important;
}

.contact__table dd input[type=text]:focus,
.contact__table dd input[type=email]:focus,
.contact__table dd input[type=tel]:focus,
.contact__table dd textarea:focus {
  outline: none;
  /* box-shadow: 0px 0px 3px 0px #e4c5c5; */
}

.contact__dd-address01 p input[type=tel] {
  width: 250px;
  max-width: 100%;
}

.contact__table dd textarea {
  height: 300px;
  resize: none;
  padding: 20px 25px;
  /* border-radius: 20px; */
}

input[type=radio] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.wpcf7-list-item.first {
  margin-left: 0;
}

span.wpcf7-list-item-label {
  font-size: 1.5rem;
  font-weight: 400;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

span.wpcf7-list-item-label::before {
  display: block;
  content: "";
  border-radius: 50%;
  background-color: #f7f7f7;
  width: 24px;
  height: 24px;
  margin-right: 15px;
}

/* 選択中 */
span.wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: #25a71d;
  left: 7px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

@media (max-width: 834px) {
  span.wpcf7-list-item-label {
    font-size: 1.5rem;
  }
}
input[type=radio]:checked + span.wpcf7-list-item-label::after {
  display: block;
}

span[data-name=radio-orf],
span[data-name=radio-subject] {
  display: inline-block;
  transform: translateY(-6px);
}

/* 送信ボタン */
.contact-submit-wrap {
  width: 300px;
  max-width: 100%;
  height: 80px;
  margin: 30px auto 0;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.contact-submit-wrap input[type=submit] {
  width: 100%;
  height: 80px;
  line-height: normal;
  background-color: #32634b;
  border-radius: 5px;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 500;
  padding: 20px 25px;
  text-align: left;
  border: none;
  transition: all 0.3s linear;
  position: relative;
  cursor: pointer;
}

.contact-submit-wrap {
  position: relative;
  overflow: hidden;
}

.contact-submit-wrap .green-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #25a71d;
  border-radius: 15px;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  overflow: hidden;
}

.contact-submit-wrap .green-dot:before,
.contact-submit-wrap .green-dot:after {
  content: "\f1df";
  font-family: "Material Symbols Outlined";
  position: absolute;
  line-height: 20px;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  right: 21px;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  overflow: hidden;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  letter-spacing: 1em;
}

.contact-submit-wrap .green-dot:before {
  transition: all 0.3s ease-in-out;
  transform: translate(0px, -50%);
  opacity: 0;
}

.contact-submit-wrap:hover .green-dot:before {
  transform: translate(26px, -50%);
  opacity: 1;
  z-index: 2;
}

.contact-submit-wrap .green-dot:after {
  transition: all 0.3s ease-in-out;
  transform: translate(26px, -50%);
  opacity: 1;
}

.contact-submit-wrap:hover .green-dot:after {
  transform: translate(54px, -50%);
  opacity: 0;
}

/* チェックボックス・ラジオボタン */
.cf7__list dd .wpcf7-checkbox,
.cf7__list dd .wpcf7-radio {
  display: block;
  padding: 15px 0 10px;
}

/* 縦並び */
.wpcf7-list-item {
  display: block !important;
  margin-right: 0 !important;
  margin-bottom: 1.8rem;
}
@media (max-width: 1000px) {
  .wpcf7-list-item {
    margin-bottom: 1rem;
  }
}

.cf7__list dd .wpcf7-list-item {
  display: block;
  margin: 0;
}

.contact__table dd .wpcf7-radio .wpcf7-list-item {
  display: block;
  margin: 0 0 1.8rem 0 !important;
}
@media (max-width: 1000px) {
  .contact__table dd .wpcf7-radio .wpcf7-list-item {
    margin-bottom: 1rem;
  }
}

.cf7__list dd .wpcf7-list-item:nth-child(n+2) {
  margin-top: 18px;
}

.cf7__list dd .wpcf7-list-item label {
  cursor: pointer;
}

input[type=checkbox],
input[type=radio] {
  /* position: relative; */
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border: 1px solid #bcbcbc;
  vertical-align: -3px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=checkbox] {
  display: block;
  content: "";
  border-radius: 50%;
  background-color: #f7f7f7;
  width: 35px;
  height: 35px;
  border: none;
}

input[type=checkbox]:checked {
  /* border: 1px solid #debcaa;
  border-radius: 3px; */
  /* background: #3eb1eb; */
}

input[type=checkbox]:checked:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 14px;
  transform: rotate(50deg);
  width: 7px;
  height: 14px;
  border-right: 2px solid #25a71d;
  border-bottom: 2px solid #25a71d;
}

#privacy-policy-checkbox span.wpcf7-list-item-label::before {
  display: none;
}

.privacy-label {
  display: flex;
}

span[data-name=privacy-check] {
  /* margin: 30px auto 0; */
  display: block;
  width: fit-content;
}

span[data-name=privacy-check] .wpcf7-list-item-label::before {
  display: none;
}

span[data-name=privacy-check] .wpcf7-list-item label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* エラー時　入力欄の背景変更 */
.contact__table .wpcf7-not-valid {
  background-color: #f4e6eb !important;
  border: 1px solid #cea9b8 !important;
}

/* //エラーメッセージ調整 */
.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-not-valid-tip {
  font-size: 12px !important;
  position: absolute;
  bottom: -25px;
  width: 100%;
  min-width: 300px;
}

/* -------------------------
 * contact__table
 * ------------------------- */
.contact__table {
  display: flex;
  flex-wrap: wrap;
  gap: 6rem;
  border-top: 1px solid #ccc;
  padding-top: 8rem;
}
@media (max-width: 1000px) {
  .contact__table {
    gap: 1rem;
    padding-top: 3rem;
  }
}
.contact__table dt {
  display: flex;
  justify-content: space-between;
  width: 37rem;
}
@media (max-width: 1000px) {
  .contact__table dt {
    width: 100%;
  }
}
.contact__table dt p {
  margin-top: 4px;
}
@media (max-width: 1000px) {
  .contact__table dt p {
    margin-top: 0;
    font-weight: 500;
  }
}
.contact__table dt .require-txt {
  color: #25a71d;
  font-size: 1.4rem;
  border-radius: 5rem;
  padding: 0.5rem 1.5rem;
  border: 1px solid #25a71d;
  display: inline-block;
  height: fit-content;
}
@media (max-width: 1000px) {
  .contact__table dt .require-txt {
    font-size: 1.2rem;
    padding: 0.25rem 1rem;
  }
}
.contact__table dd {
  width: calc(100% - 43rem);
}
@media (max-width: 1000px) {
  .contact__table dd {
    margin-bottom: 2rem;
    width: 100%;
  }
}

.contact__lead-txt {
  margin-bottom: 6rem;
  text-align: center;
}
@media (max-width: 1000px) {
  .contact__lead-txt {
    margin-bottom: 3rem;
  }
}

/* -------------------------
 * contact__pp
 * ------------------------- */
.contact__pp {
  border: 1px solid #cccccc;
  border-radius: 1rem;
  margin-top: 9rem;
  margin-bottom: 7rem;
  padding: 4rem 6rem;
  overflow-y: scroll;
  height: 47rem;
}
@media (max-width: 600px) {
.contact__pp {
  margin-top: 3rem;
  margin-bottom: 4rem;
  padding: 3.5rem 2.5rem;
  height: 47rem;
}
}

.contact__pp-lead-ttl {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}

.contact__pp-lead-txt {
  margin-bottom: 5rem;
}

.contact__pp-list-item {
  margin-bottom: 3.5rem;
}
.contact__pp-list-item:last-child {
  margin-bottom: 0;
}

.contact__pp-list-ttl {
  display: inline-block;
  border-bottom: 1px solid #999999;
  margin-bottom: 1.5rem;
}

.privacy-check-label {
  margin-bottom: 5rem;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
}

/* -------------------------
 * thanks
 * ------------------------- */
.thanks__main-txt {
  margin-bottom: 3rem;
  text-align: center;
}

.thanks__txt {
  margin-bottom: 7rem;
  text-align: center;
}
@media (max-width: 1000px) {
  .thanks__txt {
    margin-bottom: 3rem;
    text-align: left;
  }
}

.contact__tel-box {
  border: 1px solid #cccccc;
  border-radius: 1rem;
  display: flex;
  justify-content: space-between;
  padding: 4rem 6rem;
  gap: 5rem;
  max-width: 85rem;
  margin: 0 auto 8rem;
  align-items: center;
}
@media (max-width: 1000px) {
  .contact__tel-box {
    padding: 3rem 2rem;
    gap: 2rem;
    margin: 0 auto 4rem;
    flex-direction: column;
  }
}

.contact__tel-box-cont-ttl {
  margin-bottom: 1rem;
}

.contact__tel-box-txt {
  margin-left: 1rem;
}

.thanks__main .common-contact__btn {
  margin: 0 auto;
}/*# sourceMappingURL=contact.css.map */