バブルシャンデリア BALLON
バブルシャンデリアの元祖、シャボン玉のように美しい「BALLON(バロン)」シリーズ
document.addEventListener("DOMContentLoaded", () => {
const pageNum = new URLSearchParams(window.location.search).get('page');
if (pageNum && pageNum !== '1') {
// childgroupは無条件で非表示
document.querySelectorAll('.childgroup').forEach(el => {
el.style.display = 'none';
});
// fs-c-productListの存在を取得
const productList = document.querySelector('.fs-c-productList');
if (productList) {
// .category-commentの中に商品リストが含まれていないか確認
document.querySelectorAll('.category-comment').forEach(el => {
if (!el.contains(productList)) {
el.style.display = 'none';
}
});
}
}
});