/* お問い合わせページ */      

.hero {
    height: 300px;
    background: url(/img/hero.jpg) no-repeat center center / cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 768px)    {
    .hero {
        height: 200px;
    }
}

.contact-section {
    padding: 40px 20px;
    background: #f9f9f9;
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-container h2 {
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
}

.contact-container p {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.contact-form textarea {
    height: 100px;
}

.contact-form .privacy-policy {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-form .privacy-policy label {
    margin-left: 5px;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.submit-btn:hover {
    background: #0056b3;
}