//関連サイトのアコーディオン
$(function () {
  $(".asahi-related-site__hdg-tgl").on("click", function () {
      console.log("adsdadsdaads");
    if ($(this).next().is(".hidden")) {
      $(this).next().slideDown("100");
      $(this).next().removeClass("hidden");
      $(this).toggleClass("panel-open");
    } else {
      $(this).next().slideUp("100");
      $(this).next().toggleClass("hidden");
      $(this).removeClass("panel-open");
    }
  });
});