
// お問い合わせ 確認
function contact_agree() {

	if (document.contact.agree) {
		if (! document.contact.agree.checked) {
			alert('お問い合わせを行う場合、注意事項に同意してください。');
			return false;
		}
		return true;
	}
	return false;
}


