Please contact us using the form below. After filling in each item, click the “Confirm Information” button.
I agree to the purpose stated for using my personal information
jQuery(document).ready(function($){ $('.form-input:not(textarea)').on("keydown", function (e) { if(!$(this).hasClass('more')){ var n = $('.form-input').length; if (e.which == 13) {
e.preventDefault(); var Index = $('.form-input').index(this); // 現在の要素 var nextIndex = Index + 1; if (nextIndex < n) { $('.form-input')[nextIndex].focus(); // 次の要素へフォーカスを移動 } else { $(this).blur(); // 最後の要素ではフォーカスを外す } } } }); _submitOk(); $("#privacy-check").on("change", _submitOk); function _submitOk(){ $("#form-submit").prop("disabled", !$("#privacy-check").prop("checked")); } });