/* ===============================
   お問い合わせページ
================================== */
#contact {
}
#contact .contact-section {
 padding: 60px 0;
 background: #fff;
}
@media screen and (min-width: 768px) {
 #contact .contact-section {
  padding: 100px 0;
 }
}

#contact .contact-flex {
 margin-bottom: 40px;
}
#contact .contact-text {
 font-size: 1rem;
 line-height: 1.8;
 color: #333;
}
@media screen and (min-width: 768px) {
 #contact .contact-text {
  font-size: 1.2rem;
 }
}
#contact .contact-form-box {
 background: #f9f9f9;
 padding: 30px 20px;
 border-radius: 8px;
}
#contact .contact-form-row {
 margin-bottom: 20px;
}
#contact .contact-form-row label {
 display: block;
 font-weight: bold;
 margin-bottom: 5px;
}
#contact .contact-form-row .required {
 color: red;
 font-size: 0.9em;
}
#contact .contact-form-row input,
#contact .contact-form-row textarea {
 width: 100%;
 padding: 10px;
 border: 1px solid #ccc;
 border-radius: 4px;
 font-size: 1rem;
}
#contact .contact-submit {
 text-align: center;
 margin-top: 30px;
}
#contact .contact-button {
 background-color: #d6a59c;
 color: #fff;
 padding: 12px 40px;
 font-size: 1.1rem;
 border: none;
 border-radius: 30px;
 cursor: pointer;
}
#contact .contact-button:hover {
 opacity: 0.8;
}
