.mw_wp_form .horizontal-item + .horizontal-item { margin-left: 0 !important; }

ご入力いただきました個人情報はお客さまへのサービス提供にのみ使用し、第三者及び他社に開示することはございません。
同意いただいた上で以下のボタンより送信ください。

jQuery(document).ready(function($) { const contactType = $('#contact-type'); const studioGroup = $('#studio-type'); const catalogGroup = $('#catalog-type'); const zipLabel = $('label[for="zip"] .required'); const address1Label = $('label[for="address1"] .required'); //const address2Label = $('label[for="address2"] .required'); const requestLabel = $('label[for="request"] .required'); function updateForm() { const selectedType = contactType.val(); if (selectedType === '資料請求(カタログ)') { studioGroup.hide(); catalogGroup.hide(); //カタログ選択は一時的に非表示にしています。 requestLabel.hide(); zipLabel.show(); address1Label.show(); //address2Label.show(); } else { studioGroup.show(); requestLabel.show(); catalogGroup.hide(); zipLabel.hide(); address1Label.hide(); //address2Label.hide(); } } contactType.on('change', updateForm); updateForm(); // ページ読み込み時にも実行して初期状態を設定 });