/* contact.css */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.contact-form button {
    padding: 12px;
    background: #004c97;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* お問い合わせページ */
.contact-info {
    text-align: center;
    padding: 60px 20px;
}

.contact-info h1 {
    font-size: 28px;
    color: #004c97;
    margin-bottom: 20px;
}

.contact-lead {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-card {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h2 {
    font-size: 20px;
    color: #004c97;
    margin-bottom: 8px;
}

.contact-value {
    font-size: 22px;
    font-weight: bold;
    color: #222;
}

.contact-note {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

.visit-info {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 30px;
    background: #f7f9fc;
    padding: 15px 20px;
    border-left: 4px solid #004c97;
    border-radius: 6px;
}
