/* ========================================
    異業種交流会申し込みフォーム スタイル
    キーカラー: #009D85
    ======================================== */

    /* フォーム全体のラッパー */
    .business-networking-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 157, 133, 0.1);
    }

    /* イベント情報エリア */
    .event-info {
    background: linear-gradient(135deg, #e6f7f5 0%, #f0faf9 100%);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 35px;
    border-left: 5px solid #009D85;
    }

    .event-info p {
    margin: 12px 0;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    }

    .event-info strong {
    color: #009D85;
    font-weight: 600;
    }

    /* フォームフィールドエリア */
    .form-fields {
    margin-top: 30px;
    }

    .form-fields > label {
    display: block;
    margin-bottom: 25px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
    }

    /* テキスト入力フィールド */
    .form-fields input[type="text"],
    .form-fields input[type="email"],
    .form-fields input[type="tel"],
    .form-fields textarea {
    width: 100%;
    padding: 15px 18px;
    font-size: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #fafafa;
    box-sizing: border-box;
    margin-top: 8px;
    }

    .form-fields input[type="text"]:focus,
    .form-fields input[type="email"]:focus,
    .form-fields input[type="tel"]:focus,
    .form-fields textarea:focus {
    border-color: #009D85;
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 157, 133, 0.1);
    }

    /* テキストエリア */
    .form-fields textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
    }

    /* ラジオボタングループ */
    .radio-group {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    margin-bottom: 25px;
    }

    .radio-label,
    .textarea-label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    font-size: 15px;
    }

    .form-fields .wpcf7-list-item {
    margin: 10px 0;
    display: block;
    }

    .form-fields input[type="radio"] {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    accent-color: #009D85;
    cursor: pointer;
    }

    .form-fields .wpcf7-list-item-label {
    font-size: 15px;
    cursor: pointer;
    color: #444;
    vertical-align: middle;
    }

    /* 送信ボタン */
    .submit-button {
    text-align: center;
    margin-top: 35px;
    }

    .btn-submit {
    background: linear-gradient(135deg, #009D85 0%, #00b89a 100%);
    color: #ffffff !important;
    padding: 18px 60px;
    font-size: 17px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 157, 133, 0.3);
    }

    .btn-submit:hover {
    background: linear-gradient(135deg, #00b89a 0%, #009D85 100%);
    box-shadow: 0 6px 20px rgba(0, 157, 133, 0.4);
    transform: translateY(-2px);
    }

    .btn-submit:active {
    transform: translateY(0);
    }

    /* 注意事項エリア */
    .form-notice {
    margin-top: 30px;
    padding: 20px;
    background: #fff9e6;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    }

    .form-notice p {
    font-size: 13px;
    color: #666;
    margin: 8px 0;
    line-height: 1.7;
    }

    /* Contact Form 7 検証エラー */
    .wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
    display: block;
    }

    .wpcf7-not-valid {
    border-color: #dc3545 !important;
    }

    /* 送信成功・エラーメッセージ */
    .wpcf7-response-output {
    margin: 20px 0 0 0;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    }

    .wpcf7-mail-sent-ok {
    background: #d4edda;
    border: 2px solid #009D85;
    color: #155724;
    }

    .wpcf7-validation-errors,
    .wpcf7-mail-sent-ng {
    background: #f8d7da;
    border: 2px solid #dc3545;
    color: #721c24;
    }

    /* スピナー(送信中) */
    .wpcf7-spinner {
    margin-left: 10px;
    }

    /* レスポンシブ対応 */
    @media (max-width: 768px) {
    .business-networking-form {
    padding: 30px 20px;
    }

    .event-info {
    padding: 20px;
    }

    .event-info p {
    font-size: 14px;
    }

    .btn-submit {
    padding: 16px 40px;
    font-size: 16px;
    width: 100%;
    }
    }

    @media (max-width: 480px) {
    .form-fields input[type="text"],
    .form-fields input[type="email"],
    .form-fields input[type="tel"],
    .form-fields textarea {
    padding: 12px 15px;
    font-size: 14px;
    }
    }