<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>原昌宏 &#8211; はっさーブログ</title>
	<atom:link href="https://nonbiri-ke.com/tag/%E5%8E%9F%E6%98%8C%E5%AE%8F/feed/" rel="self" type="application/rss+xml" />
	<link>https://nonbiri-ke.com</link>
	<description></description>
	<lastBuildDate>Mon, 01 Sep 2025 14:31:57 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://nonbiri-ke.com/wp-content/uploads/2021/07/cropped-unnamed-5-1-32x32.jpg</url>
	<title>原昌宏 &#8211; はっさーブログ</title>
	<link>https://nonbiri-ke.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>囲碁から生まれたQRコード開発秘話｜原昌宏が特許を無償公開した驚愕の理由</title>
		<link>https://nonbiri-ke.com/qr-code-inventor-hara/</link>
		
		<dc:creator><![CDATA[はっさー]]></dc:creator>
		<pubDate>Mon, 01 Sep 2025 21:00:00 +0000</pubDate>
				<category><![CDATA[気になるニュース]]></category>
		<category><![CDATA[QRコード]]></category>
		<category><![CDATA[イノベーション]]></category>
		<category><![CDATA[デンソーウェーブ]]></category>
		<category><![CDATA[バーコード]]></category>
		<category><![CDATA[原昌宏]]></category>
		<category><![CDATA[囲碁]]></category>
		<category><![CDATA[技術開発]]></category>
		<category><![CDATA[日本の発明]]></category>
		<category><![CDATA[特許開放]]></category>
		<category><![CDATA[発明者]]></category>
		<guid isPermaLink="false">https://nonbiri-ke.com/?p=10172</guid>

					<description><![CDATA[<p><img src="https://nonbiri-ke.com/wp-content/uploads/2025/09/ChatGPT-Image-2025年9月1日-23_26_15-1024x682.jpg" class="webfeedsFeaturedVisual" /></p>QRコード生みの親・原昌宏の物語 囲碁から生まれた奇跡 世界を変えた小さな四角形の物語 昼休みの囲碁が、世界中の人々の生活を変えることになるとは、誰が想像できただろうか。 あなたは今日、何回QRコードを目にしましたか。電 [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img src="https://nonbiri-ke.com/wp-content/uploads/2025/09/ChatGPT-Image-2025年9月1日-23_26_15-1024x682.jpg" class="webfeedsFeaturedVisual" /></p>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9399173969923018"
     crossorigin="anonymous"></script>
<!-- レスポンシブタイプ -->
<ins class="adsbygoogle"
     style="display:block"
     data-ad-client="ca-pub-9399173969923018"
     data-ad-slot="4717798537"
     data-ad-format="auto"
     data-full-width-responsive="true"></ins>
<script>
     (adsbygoogle = window.adsbygoogle || []).push({});
</script>



<!DOCTYPE html>
<html lang="ja">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>QRコード生みの親・原昌宏の物語</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
            line-height: 1.8;
            color: #2c3e50;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }
        
        .container {
            max-width: 800px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            border-radius: 20px;
            overflow: hidden;
            position: relative;
        }
        
        .hero-section {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(255,255,255,0.03) 2px,
                rgba(255,255,255,0.03) 4px
            );
            animation: float 20s linear infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            100% { transform: translateY(-20px) rotate(360deg); }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 2.8em;
            color: #ffffff;
            font-weight: bold;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        
        .hero-subtitle {
            font-size: 1.4em;
            color: #ecf0f1;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .hero-highlight {
            background: rgba(255,255,255,0.2);
            padding: 20px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.3);
            text-align: left;
            color: white;
        }
        
        .content {
            padding: 50px 40px;
        }
        
        .section {
            margin-bottom: 50px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .section:nth-child(even) {
            animation-delay: 0.2s;
        }
        
        .section:nth-child(odd) {
            animation-delay: 0.4s;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .section-title {
            font-size: 2.2em;
            color: #2c3e50;
            margin-bottom: 25px;
            padding-left: 20px;
            border-left: 6px solid #3498db;
            font-weight: bold;
        }
        
        .text-block {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 25px;
            border-left: 4px solid #e74c3c;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .text-block:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .highlight-box {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 25px;
            border-radius: 15px;
            margin: 25px 0;
            position: relative;
            overflow: hidden;
        }
        
        .highlight-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            animation: shine 3s infinite;
        }
        
        @keyframes shine {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
        .quote-section {
            background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
            padding: 40px;
            border-radius: 20px;
            margin: 40px 0;
            text-align: center;
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .quote-text {
            font-size: 1.4em;
            font-style: italic;
            color: #2c3e50;
            font-weight: 500;
            margin-bottom: 15px;
        }
        
        .quote-author {
            font-size: 1.1em;
            color: #7f8c8d;
            font-weight: bold;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        
        .stat-item {
            background: #ffffff;
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            border: 2px solid #ecf0f1;
            transition: all 0.3s ease;
        }
        
        .stat-item:hover {
            transform: scale(1.05);
            border-color: #3498db;
        }
        
        .stat-number {
            font-size: 2.5em;
            font-weight: bold;
            color: #e74c3c;
            display: block;
            margin-bottom: 10px;
        }
        
        .stat-label {
            color: #7f8c8d;
            font-size: 1.1em;
        }
        
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 0;
            height: 100%;
            width: 3px;
            background: linear-gradient(180deg, #3498db, #e74c3c);
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 40px;
            padding: 20px;
            background: #ffffff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -22px;
            top: 25px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #3498db;
            border: 3px solid #ffffff;
        }
        
        .timeline-year {
            font-size: 1.4em;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .timeline-content {
            color: #34495e;
            line-height: 1.7;
        }
        
        .conclusion-section {
            background: linear-gradient(135deg, #a8e6cf 0%, #dcedc1 100%);
            padding: 40px;
            border-radius: 20px;
            margin-top: 50px;
            text-align: left;
        }
        
        .conclusion-title {
            font-size: 2em;
            color: #2c3e50;
            margin-bottom: 20px;
            font-weight: bold;
            text-align: center;
        }
        
        .conclusion-text {
            font-size: 1.2em;
            color: #34495e;
            line-height: 1.8;
        }
        
        .highlight-marker {
            background: linear-gradient(transparent 60%, rgba(255, 182, 193, 0.4) 60%);
            padding: 1px 0;
        }
        
        @media (max-width: 768px) {
            .container {
                margin: 0;
                border-radius: 0;
            }
            
            .hero-section {
                padding: 40px 20px;
            }
            
            .hero-title {
                font-size: 2.2em;
            }
            
            .content {
                padding: 30px 20px;
            }
            
            .section-title {
                font-size: 1.8em;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="hero-section">
            <div class="hero-content">
                <h1 class="hero-title">囲碁から生まれた奇跡</h1>
                <p class="hero-subtitle">世界を変えた小さな四角形の物語</p>
                <div class="hero-highlight">
                    <p>昼休みの囲碁が、世界中の人々の生活を変えることになるとは、誰が想像できただろうか。</p>
                </div>
            </div>
        </div>
        
        <div class="content">
            <div class="section">
                <div class="text-block">
                    <p>あなたは今日、何回QRコードを目にしましたか。電車の切符、レストランのメニュー、キャッシュレス決済、商品パッケージ。正直に言うと、僕らはもうQRコードのない世界を想像することすらできません。</p>
                    
                    <p>しかし、この当たり前すぎる技術の背景には、一人のエンジニアの「小さな困りごと」から始まった壮大な物語があります。その主人公が、原昌宏さん。1957年生まれ、現在68歳のこの男性こそが、世界中の人々の生活を根本から変えた<span class="highlight-marker">「QRコードの生みの親」</span>なのです。</p>
                </div>
            </div>
            
            <div class="section">
                <h2 class="section-title">すべては現場の「イライラ」から始まった</h2>
                <div class="text-block">
                    <p>1990年代初頭。愛知県にあるデンソーの工場では、自動車部品の管理に深刻な問題を抱えていました。当時の一次元バーコードでは情報量に限界があり、一つの部品箱に複数のバーコードを貼り付け、それらを逐次スキャンする非効率な作業が必要だったのです。</p>
                    
                    <p>作業員は毎日、大量のバーコードを一つずつスキャンする作業に追われていました。「ピッ、ピッ、ピッ&#8230;」と続く単調で疲れる作業。原さんが現場を見た時、<span class="highlight-marker">作業員の疲労した表情が忘れられなかった</span>と言います。</p>
                </div>
                
                <div class="highlight-box">
                    <p><strong>「これは何とかしなければならない」</strong><br>
                    原さんの心に火がついた瞬間でした。より多くの情報を、より速く読み取れるコードを作ること。それが彼に与えられた使命となったのです。</p>
                </div>
            </div>
            
            <div class="section">
                <h2 class="section-title">運命の昼休み：囲碁盤が教えてくれた答え</h2>
                <div class="text-block">
                    <p>開発は困難を極めました。原さんと同僚のわずか2人という小さなチーム。限られた予算と時間の中で、従来のバーコードを遥かに上回る性能を実現しなければなりません。</p>
                    
                    <p>行き詰まりを感じていたある日の昼休み。原さんは職場で趣味の囲碁を楽しんでいました。白と黒の石が格子状に並ぶ囲碁盤を眺めながら、ふと気づいたのです。</p>
                </div>
                
                <div class="quote-section">
                    <p class="quote-text">「囲碁の石は多少ずれて置かれても、人間は周りとの相対関係で『ここに置かれた』と分かる。読み取り装置側でそれを補正して読めるようにすれば成り立つのではないか」</p>
                    <p class="quote-author">&#8211; 原昌宏</p>
                </div>
                
                <div class="text-block">
                    <p>この瞬間が、世界を変える発明の転換点でした。白と黒の格子パターン、そして三つの角に配置された特殊な「位置検出パターン」。<span class="highlight-marker">この1:1:3:1:1という白黒比率こそが、QRコードが360度どの角度からでも瞬時に認識される秘密</span>だったのです。</p>
                </div>
            </div>
            
            <div class="section">
                <h2 class="section-title">驚異的な性能：バーコードの200倍の情報量</h2>
                <div class="stats-grid">
                    <div class="stat-item">
                        <span class="stat-number">0.03</span>
                        <span class="stat-label">秒で読み取り完了</span>
                    </div>
                    <div class="stat-item">
                        <span class="stat-number">200</span>
                        <span class="stat-label">倍の情報量</span>
                    </div>
                    <div class="stat-item">
                        <span class="stat-number">30%</span>
                        <span class="stat-label">隠れても読取可能</span>
                    </div>
                    <div class="stat-item">
                        <span class="stat-number">7,089</span>
                        <span class="stat-label">桁の数字を格納</span>
                    </div>
                </div>
                
                <div class="text-block">
                    <p>完成したQRコードの性能は驚異的でした。従来のバーコードと比べて読み取り速度は10倍以上、情報量は200倍。さらに汚れや破損に強く、最大30%が隠れていても正確に読み取れる耐久性を実現したのです。</p>
                    
                    <p>しかし、原さんの真の偉大さは、<span class="highlight-marker">この革新的な技術を完全にオープンソースにしたこと</span>にあります。特許を取得しながらも、それを開放し、世界中の誰もが無料で使えるようにしたのです。</p>
                </div>
            </div>
            
            <div class="section">
                <h2 class="section-title">特許開放という英断：なぜ原さんは技術を無料にしたのか</h2>
                <div class="text-block">
                    <p>1994年3月14日に特許が出願されました。この技術は間違いなく巨額の富を生む可能性を秘めていました。しかし、原さんは迷うことなくJIS/ISO規格に準拠したQRコードについて、デンソーウェーブは保有特許の権利を行使しない方針を表明しました。</p>
                    
                    <p><span class="highlight-marker">「いち早く普及させるには、特許を開放するのが正解だと思った」</span>と振り返る原さん。この決断こそが、QRコードが今日のような世界的なインフラとなる基盤を築いたのです。</p>
                </div>
                
                <div class="highlight-box">
                    <p>僕はこの判断を聞いて、正直震えました。自分だったら、果たしてこれだけの価値ある技術を無償で世界に提供できるだろうか。原さんの「人類全体の利益」を優先した姿勢に、深い感銘を受けずにはいられません。</p>
                </div>
            </div>
            
            <div class="section">
                <h2 class="section-title">30年後の現在：想像を超えた進化と普及</h2>
                <div class="timeline">
                    <div class="timeline-item">
                        <div class="timeline-year">1994年</div>
                        <div class="timeline-content">QRコード誕生。工場での部品管理から始まる</div>
                    </div>
                    <div class="timeline-item">
                        <div class="timeline-year">1999年</div>
                        <div class="timeline-content">JIS規格として標準化</div>
                    </div>
                    <div class="timeline-item">
                        <div class="timeline-year">2000年</div>
                        <div class="timeline-content">ISO国際規格に認定</div>
                    </div>
                    <div class="timeline-item">
                        <div class="timeline-year">2010年代</div>
                        <div class="timeline-content">カメラ付き携帯・スマートフォンの普及とともに一般利用が拡大</div>
                    </div>
                    <div class="timeline-item">
                        <div class="timeline-year">2020年</div>
                        <div class="timeline-content">コロナ禍で非接触技術として注目</div>
                    </div>
                    <div class="timeline-item">
                        <div class="timeline-year">2025年</div>
                        <div class="timeline-content">日本でのQRコード決済利用率約50%、市場規模10兆円超</div>
                    </div>
                </div>
                
                <div class="text-block">
                    <p>2025年現在、QRコードは世界中で広く普及しています。<span class="highlight-marker">日本のキャッシュレス決済比率は2024年に42.8%（経産省発表）に達し</span>、コード決済の利用拡大が一因とされています。レストランのメニュー表示から医療現場での患者管理、AR・VR技術との融合まで、原さんが想像した範囲を遥かに超えて進化し続けています。</p>
                </div>
            </div>
            
            <div class="section">
                <h2 class="section-title">未来への展望：原さんが描く次なる進化</h2>
                <div class="text-block">
                    <p>1957年東京都生まれの原さんは、現在もデンソーウェーブの主席技師として現役で研究開発を続けています。さらに福井大学客員教授、名古屋学院大学特任教授として後進の指導にも当たっています。</p>
                    
                    <p>「今は白黒しかないので、QRコードに色を付ける。1秒間に10個くらい、違うQRコードを表示することによって情報量を稼げる」と語る原さん。QRコードの進化は、まだまだ始まったばかりなのです。</p>
                </div>
                
                <div class="highlight-box">
                    <p>MicroQR、iQR、SQRC、Frame QRなど、用途に応じた派生技術も続々と登場。医療情報の安全な管理、高度なセキュリティ機能、デザイン性の向上など、社会のニーズに応じて柔軟に進化しています。</p>
                </div>
            </div>
            
            <div class="section">
                <h2 class="section-title">数々の栄誉：世界が認めた功績</h2>
                <div class="text-block">
                    <p>原さんの功績は国内外で高く評価されています。2014年には欧州発明家賞Popular Prizeを受賞。2020年にはQRコードがIEEEマイルストーンに認定され、電気・電子分野における歴史的偉業として永続的に記録されました。</p>
                    
                    <p>そして2023年、日本学士院賞・恩賜賞という日本最高峰の学術賞を受賞。天皇陛下ご臨席の授賞式で、陛下から「QRコードは使っている」というお言葉をいただいたエピソードも印象深いものです。</p>
                </div>
            </div>
            
            <div class="conclusion-section">
                <h3 class="conclusion-title">一人のエンジニアが変えた世界</h3>
                <p class="conclusion-text">
                    原昌宏さんの物語は、技術開発の素晴らしさを象徴しています。現場の小さな困りごとに気づき、創意工夫で解決策を見つけ、そしてその成果を惜しみなく世界と共有する。この姿勢こそが、真のイノベーションを生み出す原動力なのかもしれません。<br><br>
                    
                    <span class="highlight-marker">昼休みの囲碁から生まれた小さなアイデアが、30年後には27億人の生活を支える巨大なインフラになる</span>。原さんの物語は、私たちに「どんな小さな発見も、世界を変える可能性を秘めている」ということを教えてくれます。<br><br>
                    
                    明日QRコードを見かけたら、ぜひ原昌宏さんのことを思い出してください。そして、あなた自身の日常の中にも、世界を変える可能性が眠っていることを信じて欲しいのです。
                </p>
            </div>
        </div>
    </div>
</body>
</html>



<p><strong>最後までお読みいただきありがとうございます。↓↓のバナーをクリックして応援いただけると嬉しいです。</strong></p>



<div class="wp-block-group is-row is-nowrap is-layout-flex wp-container-core-group-is-layout-ad2f72ca wp-block-group-is-layout-flex">
<a href="https://news.blogmura.com/news_kininaru/ranking/in?p_cid=11149995" target="_blank"><img decoding="async" src="https://b.blogmura.com/news/news_kininaru/88_31.gif" width="106" height="37" border="0" alt="にほんブログ村 ニュースブログ 気になるニュースへ" /></a><br /><a href="https://news.blogmura.com/news_kininaru/ranking/in?p_cid=11149995" target="_blank">にほんブログ村</a>



<a href="https://blog.with2.net/link/?id=2071189" title="人気ブログランキング"><img decoding="async" alt="人気ブログランキング" width="106" height="37" src="https://blog.with2.net/img/banner/banner_22.svg"></a><br><a href="https://blog.with2.net/link/?id=2071189" title="人気ブログランキング" style="font-size: 0.9em;">人気ブログランキング</a>
</div>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
