/* お問い合わせフォーム用のスタイル */
.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #0f2350;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #0f2350;
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.required {
    color: #ff4136;
    margin-left: 0.2rem;
}

.submit-btn {
    background-color: #0f2350;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #1e3a6e;
    transform: translateY(-2px);
}

.form-footer {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

/* 連絡先情報のスタイル */
.contact-info {
    margin-top: 3rem;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: #0f2350;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
} 