{"id":6,"date":"2026-04-09T01:31:28","date_gmt":"2026-04-08T16:31:28","guid":{"rendered":"https:\/\/www.godrace.nozotown.com\/?p=6"},"modified":"2026-04-09T01:37:41","modified_gmt":"2026-04-08T16:37:41","slug":"6","status":"publish","type":"post","link":"https:\/\/www.godrace.nozotown.com\/?p=6","title":{"rendered":"\u7d50\u4e0d\u52d5\u7523\u30d1\u30f3\u30d5\u30ec\u30c3\u30c8\u30b0\u30e9\u30d5\u78ba\u8a8d\u7528"},"content":{"rendered":"\n<p>\u3053\u306e\u6570\u5b57\u30fb\u8868\u793a\u3067\u9593\u9055\u3044\u306a\u3044\u306a\u306a\u3089\u672c\u756a\u306b\u5165\u308a\u307e\u3059<\/p>\n\n\n\n<!DOCTYPE html>\n<html lang=\"ja\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>\u4f1a\u793e\u5b9f\u7e3e &#8211; \u53d6\u5f15\u4ef6\u6570\u3068\u58f2\u308a\u4e0a\u3052\u63a8\u79fb<\/title>\n    <script src=\"https:\/\/cdn.jsdelivr.net\/npm\/chart.js\"><\/script>\n    <style>\n        body { \n            font-family: 'Helvetica Neue', Arial, sans-serif; \n            display: flex; \n            justify-content: center; \n            align-items: center; \n            height: 100vh; \n            margin: 0; \n            background-color: #f4f7f6; \n        }\n        .chart-container { \n            width: 90%; \n            max-width: 1000px; \n            background: white; \n            padding: 30px; \n            border-radius: 12px; \n            box-shadow: 0 8px 16px rgba(0,0,0,0.1); \n        }\n        h2 {\n            text-align: center;\n            color: #333;\n            margin-bottom: 20px;\n        }\n    <\/style>\n<\/head>\n<body>\n    <div class=\"chart-container\">\n        <h2>\u4ef2\u4ecb\u30fb\u8cb7\u53d6\u3068\u3082\u306b\u4ef6\u6570\u3068\u58f2\u4e0a\u3092\u62e1\u5927\u3057\u3001\u7740\u5b9f\u306b\u6210\u9577\u3092\u7d9a\u3051\u3066\u304a\u308a\u307e\u3059<\/h2>\n        <canvas id=\"myChart\"><\/canvas>\n    <\/div>\n\n    <script>\n        const ctx = document.getElementById('myChart').getContext('2d');\n        const myChart = new Chart(ctx, {\n            type: 'bar',\n            data: {\n                labels: ['2020\u5e74(\u55b6\u696d1\u4eba)', '2021\u5e74', '2022\u5e74', '2023\u5e74', '2024\u5e74(\u55b6\u696d3\u4eba)', '2025\u5e74(\u55b6\u696d5\u4eba)'],\n                datasets: [\n                    {\n                        label: '\u4ef2\u4ecb\u4ef6\u6570 (\u4ef6)',\n                        data: [11, 13, 13, 30, 50, 75],\n                        type: 'line',\n                        borderColor: '#f28e2b',\n                        backgroundColor: '#f28e2b',\n                        borderWidth: 3,\n                        tension: 0.3,\n                        yAxisID: 'y1',\n                        pointRadius: 5,\n                        pointHoverRadius: 8\n                    },\n                    {\n                        label: '\u8cb7\u53d6\u4ef6\u6570 (\u4ef6)',\n                        data: [3, 4, 16, 15, 21, 22],\n                        type: 'line',\n                        borderColor: '#4e79a7',\n                        backgroundColor: '#4e79a7',\n                        borderWidth: 3,\n                        tension: 0.3,\n                        yAxisID: 'y1',\n                        pointRadius: 5,\n                        pointHoverRadius: 8\n                    },\n                    {\n                        label: '\u58f2\u4e0a (\u5104\u5186)',\n                        data: [0.8, 0.53, 1.48, 2.6, 4.53, 5.52],\n                        type: 'bar',\n                        backgroundColor: '#59a14f',\n                        yAxisID: 'y',\n                        barPercentage: 0.6,\n                        borderRadius: 4\n                    }\n                ]\n            },\n            options: {\n                responsive: true,\n                interaction: {\n                    mode: 'index',\n                    intersect: false,\n                },\n                plugins: {\n                    tooltip: {\n                        callbacks: {\n                            label: function(context) {\n                                let label = context.dataset.label || '';\n                                if (label) {\n                                    label += ': ';\n                                }\n                                if (context.parsed.y !== null) {\n                                    if (context.dataset.yAxisID === 'y') {\n                                        label += context.parsed.y + ' \u5104\u5186';\n                                    } else {\n                                        label += context.parsed.y + ' \u4ef6';\n                                    }\n                                }\n                                return label;\n                            }\n                        }\n                    }\n                },\n                scales: {\n                    y: {\n                        type: 'linear',\n                        display: true,\n                        position: 'left',\n                        title: {\n                            display: true,\n                            text: '\u58f2\u4e0a (\u5104\u5186)',\n                            font: { size: 14, weight: 'bold' }\n                        },\n                        min: 0,\n                        max: 6,\n                        ticks: { stepSize: 1 }\n                    },\n                    y1: {\n                        type: 'linear',\n                        display: true,\n                        position: 'right',\n                        title: {\n                            display: true,\n                            text: '\u4ef6\u6570 (\u4ef6)',\n                            font: { size: 14, weight: 'bold' }\n                        },\n                        min: 0,\n                        max: 90,\n                        ticks: { stepSize: 15 },\n                        grid: { drawOnChartArea: false },\n                    },\n                }\n            }\n        });\n    <\/script>\n<\/body>\n<\/html>\n","protected":false},"excerpt":{"rendered":"<p>\u3053\u306e\u6570\u5b57\u30fb\u8868\u793a\u3067\u9593\u9055\u3044\u306a\u3044\u306a\u306a\u3089\u672c\u756a\u306b\u5165\u308a\u307e\u3059 \u4f1a\u793e\u5b9f\u7e3e #8211; \u53d6\u5f15\u4ef6\u6570\u3068\u58f2\u308a\u4e0a\u3052\u63a8\u79fb \u4ef2\u4ecb\u30fb\u8cb7\u53d6\u3068\u3082\u306b\u4ef6\u6570\u3068\u58f2\u4e0a\u3092\u62e1\u5927\u3057\u3001\u7740\u5b9f\u306b\u6210\u9577\u3092\u7d9a\u3051\u3066\u304a\u308a\u307e\u3059<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"onecolumn-960.php","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-6","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"https:\/\/www.godrace.nozotown.com\/index.php?rest_route=\/wp\/v2\/posts\/6","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.godrace.nozotown.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.godrace.nozotown.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.godrace.nozotown.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.godrace.nozotown.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=6"}],"version-history":[{"count":2,"href":"https:\/\/www.godrace.nozotown.com\/index.php?rest_route=\/wp\/v2\/posts\/6\/revisions"}],"predecessor-version":[{"id":19,"href":"https:\/\/www.godrace.nozotown.com\/index.php?rest_route=\/wp\/v2\/posts\/6\/revisions\/19"}],"wp:attachment":[{"href":"https:\/\/www.godrace.nozotown.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=6"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.godrace.nozotown.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=6"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.godrace.nozotown.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=6"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}