/*
Theme Name: IES Corp Theme
Author: Takuro
Description: 株式会社IES オリジナルテーマ
Version: 1.0
*/
/* ============================================
 * Contact Form 7 スタイリング
 * ============================================ */
.cf7-form .cf7-field {
    margin-bottom: 1.5rem;
}
.cf7-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}
.cf7-form .req {
    color: #ef4444;
}
.cf7-form input[type="text"],
.cf7-form input[type="email"],
.cf7-form input[type="tel"],
.cf7-form select,
.cf7-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: #1f2937;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}
.cf7-form input:focus,
.cf7-form select:focus,
.cf7-form textarea:focus {
    outline: none;
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}
.cf7-form textarea {
    resize: vertical;
    min-height: 150px;
}
.cf7-form .wpcf7-submit {
    width: 100%;
    background: #059669;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(5,150,105,0.2);
}
.cf7-form .wpcf7-submit:hover {
    background: #047857;
    box-shadow: 0 4px 12px rgba(5,150,105,0.3);
}
.cf7-note {
    font-size: 0.75rem;
    color: #9ca3af;
    text-align: center;
    margin-top: 0.75rem;
}