@charset "UTF-8";

/* ================================================================================
   公開フォームのbot対策用の罠フィールド（honeypot）
   templates/element/bot_guard_fields.php から読み込まれる

   display:none ではなく画面外配置にしているのは、
   表示状態を判定してから入力するタイプの bot にも入力させるため。
   人間には見えないので、スクリーンリーダー対策として
   要素側に aria-hidden="true" と tabindex="-1" を付けている。
================================================================================ */
.botGuardField {
    position: absolute !important;
    left: -9999px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}
