//関連サイトã®ã‚¢ã‚³ãƒ¼ãƒ‡ã‚£ã‚ªãƒ³ $(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"); } }); });