$(function(){
  
  // トグルメニューの選択エリアはデフォルト非表示
  $(".footer-link .toggle-menu dd").hide();
  
  // トグルメニューのタイトル文字
  // clickアクション
  $(".footer-link .toggle-menu dt").click(function(){
    $(this).nextAll("dd").toggle();
  });
  
  // トグルメニューのタイトル文字
  // hoverアクション
  $(".footer-link .toggle-menu dt").hover(
    // マウスオン
    function(){
      $(this).nextAll("dd").show();
    },
    // マウスアウト
    function(){
      $(this).nextAll("dd").hide();
    }
  );
  
  // トグルメニューの選択エリア
  // hoverアクション
  $(".footer-link .toggle-menu dd").hover(
    // マウスオン
    function(){
      $(this).show();
    },
    // マウスアウト
    function(){
      $(this).hide();
    }
  );
  
});
