高度専門職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) 点数 選択
経営管理に関する専門職学位(MBA,MOT)を保有 25点
博士若しくは修士の学位又は専門職学位 20点
大卒又はこれと同等以上の教育(博士,修士を除く) 10点
複数の分野における2以上の博士若しくは修士の学位又は専門職学位(※2) 5点
職歴
従事しようとする業務に係る実務経験 10年以上 25点
7年以上10年未満 20点
5年以上7年未満 15点
3年以上5年未満 10点
年収 (※3)
3000万円以上 50点
2500万~3000万円 40点
2000万~2500万円 30点
1500万~2000万円 20点
1000万~1500万円 10点
地位
代表取締役、代表執行役又は代表権のある業務執行社員 10点
取締役、執行役又は業務執行社員 5点
特別加算 活動機関
Ⅰ イノベーション促進支援措置を受けている 10点
Ⅱ Ⅰに該当する企業であって,中小企業基本法に規定する中小企業者 10点
活動機関が中小企業で,試験研究費が売上高の3%超 5点
特別加算 資格・表彰
関連業務の外国資格や表彰等を保有 5点
特別加算 日本の大学
日本の大学を卒業又は大学院の課程を修了 10点
特別加算 日本語能力
Ⅰ 日本語専攻の外国大学卒業又は日本語能力試験N1合格 15点
Ⅱ 日本語能力試験N2合格 10点
特別加算 プロジェクト
各省が関与する成長分野の先端プロジェクトに従事 10点
特別加算 卒業大学
以下のランキング2つ以上において300位以内の大学を卒業 10点
スーパーグローバル大学創成支援事業またはイノベーティブ・アジア事業「パートナー校」 10点
特別加算 研修修了
JICAが実施する研修を修了 5点
特別加算 投資
本邦の機関に1億円以上を投資 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');
}