テキストボックスが3つあります。 それら全てに文字が入力されていないと送信ボタンがグレーアウトして作動しなくなっています。 逆に全てのテキストボックスに文字が入力されていればクリックできるようになります。 サンプルコード サンプルコード HTML <form> <label for="input01">入力欄1つめ</label> <input required id="input01" type="text" /> <label for="input02">入力欄2つめ</label> <input type="text" id="input02"/> <label for="input03">入力欄3つめ</label> <input required type="text" id="input03"/> <button type="submit" class="send">送信</b