$(function(){
	$(document).ready(function(){
		$("#inquiry-form").validate({
			rules: {
　　        	name: {
　　            	required: true
　　            },
　　            email: {
　　            	required: true,
					email: true
　　            },
				tel1: {
					digits: true,
					maxlength: 4
				},
				tel2: {
					digits: true,
					maxlength: 4
				},
				tel3: {
					digits: true,
					maxlength: 4
				}
　　        }
　　    });
	});
});

