.contact-section {
  background: #faf9f5;
  padding: 80px 0;
  color: #4b3a34;
}

.contact-section .container {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-size: 28px;
  font-weight: bold;
  position: relative;
  margin-bottom: 20px;
  z-index: 1;
}

.page-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #94c2c3;
  margin-top: 16px;
}

.page-title .highlight-circle {
  position: absolute;
  left: -40px;
  top: 33%;
  transform: translateY(-50%);
  width: 100px;
  height: 100px;
  background: rgba(228, 153, 130, 0.5);
  border-radius: 50%;
  z-index: -1;
  filter: blur(8px);
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 40px;
  color: #999;
}

.lead {
  color: #4b3a34;
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 690px;
  margin: 0 auto;
}


.contact-form {
  width: 90%;
  max-width: 690px;
  margin: 60px auto;
}

.contact-form .form-group {
  margin-bottom: 24px;

}

.form-group br {
  display: none;
}

.contact-form label {
  font-size: 14px;
  color: #5b8a8c;
  display: block;
  margin-bottom: 6px;
}

.required {
  background-color: #f9c6b0;
  color: #4b3a34;
  font-size: 12px;
  padding: 2px 8px;
  margin-left: 8px;
  border-radius: 4px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #5b8a8c;
  border-radius: 4px;
  font-size: 14px;
  background-color: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #bbb;
}


.form-check {
  text-align: center;
}


.form-check label {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 14px;
}

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

.form-check a {
  color: #5b8a8c;
  text-decoration: underline;
}



/* 送信ボタン */
.form-submit {
  text-align: center;
  margin-top: 60px;
  position: relative;
}

.contact-form input[type="submit"],
.wpcf7-submit {
  width: auto;
  padding: 14px 100px;
  height: auto;
  min-width: 150px;
  box-sizing: border-box;
  cursor: pointer;
}


.contact-form input[type="submit"] {
  background-color: #5b8a8c !important;
  color: #fff !important;
  border: none !important;
  border-radius: 30px !important;
  padding: 12px 100px !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  transition: 0.3s !important;
}

/* ホバー */
.contact-form input[type="submit"]:hover {
  opacity: 0.8 !important;
}


.wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: calc(50% + 110px);
  /* ボタンの右横あたり */
  transform: translateY(-50%);
}


.wpcf7 form.sent .wpcf7-response-output {
  border-color: unset;
}

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

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


.recaptcha-note {
  font-size: 0.72rem;
  color: #666;
  margin-top: 1.5em;
  line-height: 1.6;
  text-align: center;
}



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

  .page-title .highlight-circle {
    position: absolute;
    left: -10px;
    top: 20%;
    width: 70px;
    height: 70px;
  }

  .form-check label {
    font-size: 13px;
  }


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