今日の問題 日本で国民皆保険制度が始まった年は? ① 1942年 ② 1950年 ③ 1961年 ④ 1971年 ※回答はこちらからログインしてご確認ください 回答はこちら 正解は③ 1961年です! 1955年ごろには被用者保険の整備が進んでいたが、農家や自営業者などを中心に国民の多くが医療保険制度および年金制度の対象となっていなかった。そこで、1961年に地域保険である国民健康保険、国民年金にこれらの者を加入させ、国民皆保険・皆年金制度が実現した。 関連記事 ・「診療報酬改定」をめぐる迷走と奇想 過去の問題 ・2009~11年にがんと診断された人の5年相対生存率は? ・医療法人の設立認可・届出等の手続きについて権限を有するのは? ・1918~20年に大流行したスペインかぜ。世界の推計感染者数は? // ログイン調査 $(document).ready(function () { // 医師のみの場合 // if (js_class == '医師・研修医') { // $('#answerButton').removeAttr('disabled'); // console.log('医師・研修医IDでログイン中'); // } // ログインしてるか?のみチェック if ('' != sf_id) { $('#answerButton').removeAttr('disabled'); $('#notLoggedText').hide(); } }); const answerButton = document.getElementById('answerButton') answerButton.addEventListener('click', function() { this.classList.toggle('active') const answer = this.nextElementSibling if (answer.style.maxHeight) { answer.style.maxHeight = null } else { answer.style.maxHeight = answer.scrollHeight + 'px' } })