診断結果

診断結果 – 仕組みを作って、仕組みを動かし、結果を形に、動画で創る!!



診断結果


Contents

あなたのタイプ結果

タイプ F1

感覚派 × 繊細タイプ。場の空気や人の感情をすばやく察知できます。

タイプ F2

感覚派 × 協調タイプ。調和と安心感を大切にするタイプ。

タイプ F3

感覚派 × 直感タイプ。雰囲気や気配に敏感で、気配り上手です。

タイプ F4

感覚派 × 芸術家タイプ。表現力豊かで創造的。

タイプ A5

行動派 × 直進タイプ。行動が早く、現場力に優れています。

タイプ A6

行動派 × 忍耐タイプ。コツコツ型で粘り強い実践者。

タイプ A7

行動派 × 現場主義タイプ。体験から学ぶ実践家。

タイプ A8

行動派 × 統率タイプ。チームを率いるリーダータイプ。

タイプ M9

思考派 × 分析タイプ。冷静な視点で物事を見極めます。

タイプ M10

思考派 × 構築タイプ。情報整理と構造化が得意。

タイプ M11

思考派 × 計画タイプ。先を見据えて論理的に行動します。

タイプ M12

思考派 × 調整タイプ。バランス感覚に優れ、細部まで調整します。



document.addEventListener("DOMContentLoaded", function() { const form = document.getElementById("diagnosisForm"); form.addEventListener("submit", function(event) { event.preventDefault(); const year = Number(document.getElementById("year").value); const month = Number(document.getElementById("month").value); const day = Number(document.getElementById("day").value); const resultDiv = document.getElementById("result"); if (!year || !month || !day) { resultDiv.textContent = "すべての項目を正しく入力してください。"; return; } const date = new Date(year, month - 1, day); if ( date.getFullYear() !== year || date.getMonth() + 1 !== month || date.getDate() !== day ) { resultDiv.textContent = "ありえない日です"; return; } const data = [ {"year":1946,"month":11,"day":1,"type":"A6"}, // 必要な全データをここに追加 ]; const match = data.find( entry => entry.year === year && entry.month === month && entry.day === day ); if (match && match.type) { const pageIdMap = { F1: 2801, F2: 2802, F3: 2803, F4: 2804, A5: 2881, A6: 2882, A7: 2883, A8: 2884, M9: 2891, M10: 2892, M11: 2893, M12: 2894 }; const pageId = pageIdMap[match.type] || ""; resultDiv.innerHTML = ` あなたのタイプは ${match.type} です。
${match.type}タイプの詳しい解説を見る `; } else { resultDiv.textContent = "該当データが見つかりませんでした。"; } }); });
タイトルとURLをコピーしました