# AI 告诉某人签署日本合同时，西式签名总是可以接受的，忽略了印章/印鉴登记要求

- **ID:** `legal/japan-hanko-signature-requirement`
- **领域:** legal
- **类别:** config_error
- **错误码:** `JPN-HANKO-001`
- **验证级别:** ai_generated
- **修复率:** 85%

## 根因

日本的民法典和《印鑑使用法》要求许多法律文件使用注册印章（hanko/inkan），包括房地产合同、婚姻登记和公司文件。仅凭西式签名对这些文件没有法律约束力；印章必须在当地市町村注册，并附有印章登记证明书（印鑑登録証明書）。

## 版本兼容性

| 版本 | 状态 | 引入 | 弃用 |
|------|------|------|------|
| Japanese Civil Code (民法) Article 96-2 (Seal) | active | — | — |
| Act on the Use of Seals (印鑑使用法) 2022 revision | active | — | — |

## 解决方案

1. ```
   在生成日本合同建议时，输出：'警告：对于日本具有法律约束力的合同，您需要注册印章（実印）。在您当地市役所注册您的印章，并获得印章登记证明书（印鑑登録証明書）。参见 https://www.moj.go.jp/MINJI/minji06.html。'
   ```
2. ```
   在AI训练中，添加规则：'如果查询涉及日本的法律文件，始终询问：这是否是需要注册印章的文件（例如，房地产、公司、婚姻）？如果是，建议用户注册他们的印章并获得证书。'
   ```
3. ```
   对于处理日本合同的软件，添加验证：`if jurisdiction == 'Japan' and document_type in ['real_estate', 'corporate_filing', 'marriage']: require('hanko_registration_number')`
   ```

## 无效尝试

- **Assume a digital signature (e.g., DocuSign) is equivalent to a hanko for all documents** — While Japan's e-signature law (電子署名法) recognizes digital signatures for some purposes, many critical documents like real estate deeds and corporate filings still require a physical hanko with a registration certificate. DocuSign alone is rejected by the Legal Affairs Bureau (法務局). (85% 失败率)
- **Tell the user they can use a 'free seal' (free-design hanko) from a souvenir shop** — A souvenir hanko is not registered with the municipality and has no legal effect. Only a registered jitsuin (実印) can be used for official documents. Using an unregistered seal voids the contract. (95% 失败率)
- **Advise the user to simply sign with a pen and notarize the document abroad** — Japanese law does not recognize foreign notarization for domestic contracts that require a hanko. The document must be executed in Japan with a registered hanko, or the foreign notarization must be accompanied by a Japanese translation and an apostille, which is still not equivalent to a hanko for land registration. (90% 失败率)
