/* ===== CONTACT ===== */
#contact {
  padding: 6rem 4rem;
  background: #F7F9FB;
}


.section-label {
  text-align: center;
}

.contact-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.contact-heading {
  font-size: clamp(22px, 2vw, 30px);
  color: #2F4A6D;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.contact-desc {
  font-size: 14px;
  color: #444;
  line-height: 2;
  margin-bottom: 1rem;
  text-align: center;
}

.contact-note {
  font-size: 12px;
  color: #6F8FA6;
  margin-bottom: 3rem;
}

.contact-note__link {
  color: #2F4A6D;
  border-bottom: 0.5px solid #2F4A6D;
  text-decoration: none;
}

.contact-form {
  text-align: left;
}

/* CF7スタイル */
.cf7-group {
  margin-bottom: 2rem;
}

.cf7-group p{
  margin:0;
}

.cf7-group label {
  display: block;
  font-size: 13px;
  color: #2F4A6D;
  margin-bottom: 0.75rem;
}

.required {
  color: #6F8FA6;
  margin-left: 4px;
}

.cf7-radio {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  gap: 0.75rem;
}

.cf7-radio label {
  font-size: 13px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  width: 100%;
  border: none;
  background: #fff;
  padding: 0.75rem 0;
  font-size: 14px;
  color: #444;
  outline: none;
  font-family: inherit;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form textarea:focus {
  border-bottom-color: #2F4A6D;
}

.wpcf7-form textarea {
  height: 160px;
  resize: vertical;
}

.cf7-submit {
  text-align: center;
  margin-top: 3rem;
}

.wpcf7-form input[type="submit"] {
  background: #2F4A6D;
  color: #fff;
  border: none;
  padding: 1rem 8rem;
  font-size: 14px;
  letter-spacing: 0.1em;
  cursor: pointer;
transition: background 0.4s ease, color 0.4s ease;
  font-family: inherit;
}

.wpcf7-form input[type="submit"]:hover {
  background: #D9EBF4;
  color: #2F4A6D;
}

.wpcf7-submit {
  display: block;
  margin: 0 auto;
}

/* placeholder色 */
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: #999999;
}

/* 左余白 */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  padding: 1rem;
  letter-spacing: 1.5px;
}

/* ===== スマホ ===== */
@media (max-width: 768px) {
  #contact {
    padding: 4rem 1.5rem;
  }


  .contact-desc {
    text-align: left;
  }


  .cf7-radio {
    grid-template-columns: 1fr;
  }

  .wpcf7-form input[type="text"],
  .wpcf7-form input[type="email"],
  .wpcf7-form textarea {
    width: 100%;
    box-sizing: border-box;
  }
}


#thanks {
  padding: 8rem 4rem;
  background: #F7F9FB;
  text-align: center;
}

.thanks-inner {
  max-width: 600px;
  margin: 0 auto;
}

.thanks-heading {
  font-size: clamp(20px, 2vw, 28px);
  color: #2F4A6D;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.thanks-desc {
  font-size: 14px;
  color: #444;
  line-height: 2;
  margin-bottom: 3rem;
}