.contact-form {
  padding-top: 180px;
  padding-bottom: 3rem;
  background-color: #F2F7FA;
}

.contact-form .section-inner {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form .section-heading-wrapper {
  display: block;
}

.contact-form .section-label {
  font-size: 0.9rem;
  font-weight: bold;
  color: #36A6C9;
  margin-bottom: 0.5rem;
}

.contact-form .section-heading {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-form .section-title {
  color: #36A6C9;
  position: relative;
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 3rem;
  z-index: 1;
}

.contact-form .section-heading-wrapper p {
  max-width: 80vw;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.contact-form .section-inner a {
    color: #36A6C9;
    
}

.contact-form .section-inner a:hover {
  color: rgba(54, 166, 201, 0.6)
}

.contact-form .section-lead {
  font-size: 1rem;
  color: #555;
}

.contact-form select {
  padding: 0.8rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  appearance: none;
  background-color: #fff;
  background-image: url('../img/icon_arrow_down.svg');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 0.7rem;
  width: 100%;
  box-sizing: border-box;
}

form {
  max-width: 700px;
  margin: 2rem;
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0,0,0,0.1);
}

form label {
  display: block;
  margin-bottom: 1rem;
  font-weight: bold;
}

/* 電話番号や都道府県を半分の幅に */
form .half-width input,
form .half-width select {
  width: 65%;
}
.required {
  color: red;
  margin-left: 0.25rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.checkbox-wrapper,
.submit-wrapper {
  text-align: center;
}

.checkbox-wrapper label,
.submit-wrapper button {
  display: inline-block;
}

textarea {
  height: 150px;
}

button[type="submit"] {
  background: #36A6C9;
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 1.5rem;
}

button[type="submit"]:hover {
  background: #2b91b1;
}

.confirm {
  max-width: 600px;
  margin: 0 auto; /* 中央寄せ */
  text-align: left; /* 念のため明示 */
}


.contact-form .confirm p {
  text-align: left;
  line-height: 1.8;
  border-bottom: 1px solid #eee;
  padding: 0.5rem 0;

}

@media screen and (max-width: 767px) {
  .contact-form {
  padding-top: 160px;
}
}


/* プライバシーポリシー */

.privacy-policy {
  max-width: 1200px;
  margin: 2rem;
  padding: 3rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0,0,0,0.1);
}

.privacy-policy h3 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.25rem;
}

/* 段落 */
.privacy-policy p {
  margin-bottom: 1.2rem;
  text-align: left;
}

/* リンク */
.privacy-policy a {
  color: #36A6C9;
  text-decoration: underline;
}

.privacy-policy a:hover {
  color: rgba(54, 166, 201, 0.6);
}