//AdSenseにリンク

SWELLの多言語対応時にキャッチコピーを翻訳する編集

ヘッダーに記入

<script>
document.addEventListener("DOMContentLoaded", function () {
    if (window.location.pathname.includes("/en/")) {
        const taglineElement = document.querySelector(".c-catchphrase.u-thin");
        if (taglineElement) {
            taglineElement.textContent = "Real introduction to the latest cafes, fashions and hottest events in Harajuku and Omotesando";
        }
    }
});
</script>