お問い合わせ
2026年4月1日|PFOS・PFOA 水質検査 義務化スタート 省令公布済(2025年6月30日) 務化で何が変わるか →

お問い合わせ

状況に応じた最適な対応をご提案します

自治体・企業・個人それぞれに最適な対応方法があります。
function pfasCalc() { var sel = document.getElementById('pfas-comp-type').value.split(','); var rate = parseFloat(sel[0]); var cap = parseInt(sel[1]); var c1 = parseInt(document.getElementById('pfas-c1').value) || 0; var c2 = parseInt(document.getElementById('pfas-c2').value) || 0; var c3 = parseInt(document.getElementById('pfas-c3').value) || 0; var total = c1 + c2 + c3; var subsidy = Math.min(Math.floor(total * rate), cap); var burden = total - subsidy; var pct = total > 0 ? (subsidy / total * 100).toFixed(1) : '0.0'; var hitCap = (total > 0) && (Math.floor(total * rate) >= cap); var fmt = function(n){ return n.toLocaleString('ja-JP') + ' 円'; }; document.getElementById('pfas-r-total').textContent = fmt(total); document.getElementById('pfas-r-subsidy').textContent = fmt(subsidy); document.getElementById('pfas-r-burden').textContent = fmt(burden); document.getElementById('pfas-r-rate').textContent = pct + '%'; var capLabel = cap === 5000000 ? '上限500万円' : '上限700万円'; var noteEl = document.getElementById('pfas-r-note'); if (hitCap) { noteEl.textContent = '⚠ 上限額(' + capLabel + ')に達しています'; noteEl.style.color = '#DC2626'; } else { noteEl.textContent = '(' + capLabel + 'の範囲内)'; noteEl.style.color = '#94A3B8'; } var msgEl = document.getElementById('pfas-r-message'); if (total === 0) { msgEl.textContent = '費用を入力すると試算結果が表示されます。'; } else if (hitCap) { msgEl.innerHTML = '⚠ 補助金の上限額(' + capLabel + ')に達しています。
' + '実質負担額 ' + fmt(burden) + ' が自己負担となります。
' + '補助金申請のスケジュール・必要書類はお気軽にご相談ください。'; } else { var saving = fmt(subsidy); msgEl.innerHTML = '✅ 補助金を活用することで ' + saving + ' の費用削減が見込まれます。
' + '申請期限(令和8年3月31日)までに手続きを完了してください。
' + '補助金申請サポートもお任せください。'; } } pfasCalc();