document.addEventListener('change', function(e) { if (e.target.classList.contains('toggle-size')) { const targetId = e.target.getAttribute('data-target'); const targetBox = document.getElementById(targetId); if (targetBox) { if (e.target.checked) { targetBox.style.display = 'block'; } else { targetBox.style.display = 'none'; // チェックを外したときに中の入力や下層のチェックもリセットしたい場合 const inputs = targetBox.querySelectorAll('input, select'); inputs.forEach(input => { if (input.type === 'checkbox') input.checked = false; if (input.tagName === 'SELECT') input.selectedIndex = 0; if (input.type === 'number') input.value = ''; }); // さらに下層のボックスも隠す const subBoxes = targetBox.querySelectorAll('.extra-size-box'); subBoxes.forEach(box => box.style.display = 'none'); } } } });

年賀状

年賀状

2025年賀

2024年賀

2023年賀

2022年賀

2021年賀

2020年賀

2019年賀

2018年賀

2017年賀

2016年賀

2015年賀

TOP