//  ハンバーがボタンとドロワー
$("#js-button-drawer").on("click", function() {
    $(this).toggleClass("is-checked");
    $("#js-drawer").slideToggle();
    $("body").toggleClass("is-fixed");
});

//メニューボタンを押すとページ内のセクションにアニメーションして移動

//Service
$("#js-button-service").on("click",function() {
    $("html, body").animate({
        scrollTop: $("#service").offset().top}, 500);
});

//Works
$("#js-button-works").on("click",function() {
    $("html, body").animate({
        scrollTop: $("#works").offset().top}, 500);
});

//About
$("#js-button-about").on("click",function() {
    $("html, body").animate({
        scrollTop: $("#about").offset().top}, 500);
});

//Work flow
$("#js-button-flow").on("click",function() {
    $("html, body").animate({
        scrollTop: $("#flow").offset().top}, 500);
});

//message
$("#js-button-message").on("click",function() {
    $("html, body").animate({
        scrollTop: $("#message").offset().top}, 500);
});