/* スパム対策用CSS - ハニーポットフィールドを隠す */
.honey-pot {
    position: absolute;
    left: -9999px;
    top: -9999px;
    height: 0;
    width: 0;
    z-index: -1;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* 追加のセキュリティ層 - 複数の方法で隠す */
.form-trap {
    display: none !important;
    visibility: hidden !important;
}

/* アクセシビリティ考慮 - スクリーンリーダーには読み上げない */
.sr-only-trap {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}