高度専門職1号 自動ポイント計算
/* 添加独立的类前缀避免与 WordPress 样式冲突 */
.point-calculator { font-family: Arial, sans-serif; }
.point-calculator .container { max-width: 900px; margin: auto; padding: 20px; }
.point-calculator h1, .point-calculator h2 { text-align: center; }
.point-calculator table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.point-calculator table,
.point-calculator th,
.point-calculator td { border: 1px solid black; }
.point-calculator th,
.point-calculator td { padding: 8px; text-align: left; }
.point-calculator th { background-color: #f2f2f2; }
.point-calculator .total { font-size: 1.2em; font-weight: bold; text-align: right; margin-top: 20px; }
.point-calculator .button-container { text-align: center; margin-top: 20px; }
.point-calculator button {
font-size: 1.2em;
padding: 10px 20px;
margin: 10px;
cursor: pointer;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
}
.point-calculator button:hover { background-color: #45a049; }
高度専門職1号 自動ポイント計算
以下の項目に該当する内容をチェックし、合計ポイントが70点以上になるか確認してください。
学歴 (※1) 点数 選択
博士学位(専門職学位を除く) 30点
経営管理に関する専門職学位(MBA,MOT)を保有 25点
修士又は専門職学位 20点
大卒又はこれと同等以上の教育(博士,修士を除く) 10点
複数の分野における2以上の博士若しくは修士の学位又は専門職学位(※2) 5点
職歴(従事しようとする業務に係る実務経験 )
10年以上 20点
7年以上10年未満 15点
5年以上7年未満 10点
3年以上5年未満 5点
年収 (※3)
1000万円以上 (全年齢) 40点
900万~1000万円 (全年齢) 35点
800万~900万円 (全年齢) 30点
700万~800万円 (39歳未満) 25点
600万~700万円 (39歳未満) 20点
500万~600万円 (34歳未満) 15点
400万~500万円 (30歳未満) 10点
年齢(申請の時点の年齢)
30歳未満 15点
30~34歳 10点
35~39歳 5点
研究実績
発明者として特許を受けた発明が1件以上 15点
外国政府から補助金,競争的資金等を受けた研究に3回以上従事 15点
学術論文データベースに登載されている学術雑誌に掲載された論文が3本以上 15点
その他法務大臣が認める研究実績 15点
資格
関連業務の日本国家資格を保有(1つ) 5点
関連業務の日本国家資格を複数保有 10点
特別加算 契約機関
Ⅰ イノベーション促進支援措置を受けている 10点
Ⅱ 中小企業であって、試験研究費が売上の3%以上 5点
特別加算 日本語能力
Ⅰ 日本語専攻の外国大学卒業又は日本語能力試験N1合格 15点
Ⅱ 日本語能力試験N2合格 10点
特別加算 卒業大学
300位以内の大学卒業 10点
日本の大学卒業 10点
特別加算 研修修了
JICA研修修了 5点
合計点数: 0 点
計算
PDFに保存
function calculatePoints() {
let points = document.querySelectorAll('.point-calculator input[name="points"]:checked');
let total = Array.from(points).reduce((sum, input) => sum + parseInt(input.value), 0);
document.getElementById('totalPoints').innerText = total;
}
function downloadPDF() {
const element = document.getElementById('pdf-content');
html2pdf().from(element).save('高度専門職ポイント計算.pdf');
}