そのままだとシンプルなので、毎回コピペで使っているコードを紹介します。

⬇︎⬇︎⬇︎

①フォーム設定から「SImple table」を選びます

②下記のコードを貼り付け
/*必須マークをつける */ .smf-item__label__text { position: relative; }
.smf-item__label__text::after { position: absolute; content: '必須'; color: #fff; width: 40px; height: 22px; top: 50%; transform: translateY(-50%); right: -50px; display: grid; place-items: center; background: #DD3234; font-size: 12px; }
/入力部分/ input { background-color: #dcdcdc!important; border-radius: 0!important; border: none!important; } textarea { background-color: #dcdcdc!important; border-radius: 0!important; border: none!important; }