高度専門職1号 自動ポイント計算
/* 使用特定类名避免样式冲突 */
.point-calculator-container { font-family: Arial, sans-serif; max-width: 900px; margin: auto; padding: 20px; }
.point-calculator-container h1, .point-calculator-container h2 { text-align: center; }
.point-calculator-container table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.point-calculator-container table,
.point-calculator-container th,
.point-calculator-container td { border: 1px solid black; }
.point-calculator-container th,
.point-calculator-container td { padding: 8px; text-align: left; }
.point-calculator-container th { background-color: #f2f2f2; }
.point-calculator-container .total { font-size: 1.2em; font-weight: bold; text-align: right; margin-top: 20px; }
.point-calculator-container .button-container { text-align: center; margin-top: 20px; }
.point-calculator-container button {
font-size: 1.2em;
padding: 10px 20px;
margin: 10px;
cursor: pointer;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
}
.point-calculator-container button:hover { background-color: #45a049; }
高度専門職1号 自動ポイント計算
以下の項目に該当する内容をチェックし、合計ポイントが70点以上になるか確認してください。
学歴 点数 選択
博士学位(専門職学位を除く) 30点
修士又は専門職学位 20点
大卒又はこれと同等以上の教育(博士,修士を除く) 10点
複数分野の2以上の博士・修士・専門職学位 5点
職歴
実務経験7年以上 15点
実務経験5年以上7年未満 10点
実務経験3年以上5年未満 5点
年収
年収1000万円以上 40点
年収900万~1000万円 35点
年収800万~900万円 30点
年収700万~800万円 25点
年収600万~700万円 20点
年収500万~600万円 15点
年収400万~500万円 10点
年齢
30歳未満 15点
30~34歳 10点
35~39歳 5点
研究実績
特許を受けた発明が1件以上 20点
競争的資金を受けた研究に3回以上従事 20点
学術雑誌掲載論文が3本以上 20点
法務大臣認定の研究実績が2項目以上 5点
特別加算
イノベーション促進支援措置の受けている企業 10点
中小企業で試験研究費が売上高の3%以上 5点
関連する外国資格・表彰を保有 5点
日本の大学卒業または大学院修了 10点
日本語能力試験N1合格 15点
日本語能力試験N2合格 10点
成長分野の先端プロジェクトに従事 10点
300位以内の大学卒業 10点
JICA研修修了 5点
合計点数: 0 点
計算
PDFに保存
function calculatePoints() {
let points = document.querySelectorAll('.point-calculator-container 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');
}