$(function() {
    var baseUrl = $('link[rel=INDEX]').attr('href');

    // お問い合わせの TOP へ飛ばす
    $('#contact_cancel').click(function() {
        location.href = baseUrl + 'contact/';
    });

    $('.reset').click(function() {
        location.href = baseUrl + 'contact/reset/';
    });
});