<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>グリーホールディングス株式会社 on OKURIRU ブログ</title><link>https://okuriru.com/blog/ja/companies/8010401055923/</link><description>Recent content in グリーホールディングス株式会社 on OKURIRU ブログ</description><generator>Hugo</generator><language>ja</language><atom:link href="https://okuriru.com/blog/ja/companies/8010401055923/index.xml" rel="self" type="application/rss+xml"/><item><title>時価総額＜現金？グリー(3632)は究極のネットネット株か、それとも罠か【3分解説】</title><link>https://okuriru.com/blog/ja/2026/0207-gree-net-net-stock/</link><pubDate>Sat, 07 Feb 2026 00:00:00 +0900</pubDate><guid>https://okuriru.com/blog/ja/2026/0207-gree-net-net-stock/</guid><description>&lt;p&gt;こんにちは、okuriru.com開発者の「中の人」です。福岡で子育てしながら個人開発と株式投資に励む、ごく普通のエンジニアです。&lt;/p&gt;
&lt;p&gt;今日は、懐かしい名前が出てきました。「グリー（3632）」です。ガラケー時代、「釣り★スタ」や「探検ドリランド」で一世を風靡したあの会社。最近はあまり名前を聞かないな、と思っていたのですが、財務データを分析していて驚愕の事実を見つけてしまいました。&lt;/p&gt;
&lt;p&gt;「&lt;strong&gt;時価総額よりも、持っている現金の方が多い&lt;/strong&gt;」&lt;/p&gt;
&lt;p&gt;いわゆる「&lt;strong&gt;ネットネット株&lt;/strong&gt;」の状態です。通常、企業価値がマイナス評価されるというのは、明日倒産するとか、とんでもない訴訟を抱えているとか、よほどの事情がある場合です。しかしグリーは無借金に近い超優良財務。&lt;/p&gt;
&lt;p&gt;これは市場のミスプライスなのか、それとも「この会社には未来がない」という市場の残酷な判決なのか。エンジニア兼投資家の視点で、数字とロジックからその正体を暴いていきます。&lt;/p&gt;
&lt;h2 id="1-成長性と収益性ゲーム事業の崖"&gt;1. 成長性と収益性：ゲーム事業の「崖」&lt;/h2&gt;
&lt;p&gt;まずは直近の業績を見てみましょう。正直、目を覆いたくなるような数字が並んでいます。&lt;/p&gt;
&lt;div id="echart-growth-1780381731654158000" style="width: 100%; height: 420px;"&gt;&lt;/div&gt;



&lt;script&gt;
 document.addEventListener('DOMContentLoaded', function () {
 var el = document.getElementById('echart-growth-1780381731654158000');
 var scriptSrc = '\/blog\/js\/echarts.min.js';

 function initChart() {
 if (!el || typeof echarts === 'undefined') {
 console.error('ECharts is not available or target element is missing.');
 return;
 }

 try {
 var option = JSON.parse("{\"grid\":{\"bottom\":\"10%\",\"containLabel\":true,\"left\":\"3%\",\"right\":\"4%\"},\"legend\":{\"data\":[\"売上高\",\"純利益\",\"売上高純利益率\"]},\"series\":[{\"data\":[749.1,754.4,613.1,571.1],\"itemStyle\":{\"color\":\"#5470c6\"},\"name\":\"売上高\",\"type\":\"bar\",\"yAxisIndex\":0},{\"data\":[101.2,92.8,46.3,11.9],\"itemStyle\":{\"color\":\"#91cc75\"},\"name\":\"純利益\",\"type\":\"bar\",\"yAxisIndex\":0},{\"data\":[13.5,12.3,7.6,2.1],\"itemStyle\":{\"color\":\"#ee6666\"},\"name\":\"売上高純利益率\",\"type\":\"line\",\"yAxisIndex\":1}],\"title\":{\"left\":\"center\",\"text\":\"グリーホールディングス株式会社の売上高純利益率の推移\"},\"tooltip\":{\"axisPointer\":{\"type\":\"cross\"},\"trigger\":\"axis\"},\"xAxis\":{\"data\":[\"2022\",\"2023\",\"2024\",\"2025\"],\"type\":\"category\"},\"yAxis\":[{\"axisLabel\":{\"formatter\":\"{value}\"},\"name\":\"金額（億円）\",\"position\":\"left\",\"type\":\"value\"},{\"axisLabel\":{\"formatter\":\"{value}%\"},\"name\":\"利益率（%）\",\"position\":\"right\",\"type\":\"value\"}]}");

 
 if (option.series &amp;&amp; !Array.isArray(option.series)) {
 option.series = [option.series];
 }
 var seriesArray = Array.isArray(option.series) ? option.series : [];
 var seriesNames = seriesArray
 .map(function (s, idx) {
 if (s &amp;&amp; s.name) return s.name;
 
 return 'Series ' + (idx + 1);
 })
 .filter(Boolean);
 
 
 if (option.title) {
 option.title.top = option.title.top || 0;
 }
 
 
 option.legend = {
 data: seriesNames,
 bottom: 10,
 left: 'center',
 orient: 'horizontal'
 };

 
 option.grid = option.grid || {};
 if (option.grid.bottom == null) {
 option.grid.bottom = 50;
 }

 var chart = echarts.init(el);
 chart.setOption(option);
 window.addEventListener('resize', function () { chart.resize(); });
 } catch (err) {
 console.error('Failed to initialize ECharts growth-efficiency chart:', err);
 }
 }

 function ensureEcharts(callback) {
 if (typeof echarts !== 'undefined') {
 callback();
 return;
 }

 if (window.__echartsLoading) {
 document.addEventListener('echarts:loaded', callback, { once: true });
 return;
 }

 window.__echartsLoading = true;
 var script = document.createElement('script');
 script.src = scriptSrc;
 script.onload = function () {
 window.__echartsLoading = false;
 document.dispatchEvent(new Event('echarts:loaded'));
 callback();
 };
 script.onerror = function () {
 window.__echartsLoading = false;
 console.error('Failed to load ECharts library from', scriptSrc);
 };
 document.head.appendChild(script);
 }

 ensureEcharts(initChart);
 });
&lt;/script&gt;

&lt;table&gt;
 &lt;thead&gt;
 &lt;tr&gt;
 &lt;th style="text-align: left"&gt;指標&lt;/th&gt;
 &lt;th style="text-align: center"&gt;2022&lt;/th&gt;
 &lt;th style="text-align: center"&gt;2023&lt;/th&gt;
 &lt;th style="text-align: center"&gt;2024&lt;/th&gt;
 &lt;th style="text-align: center"&gt;2025&lt;/th&gt;
 &lt;/tr&gt;
 &lt;/thead&gt;
 &lt;tbody&gt;
 &lt;tr&gt;
 &lt;td style="text-align: left"&gt;売上高（億円）&lt;/td&gt;
 &lt;td style="text-align: center"&gt;749&lt;/td&gt;
 &lt;td style="text-align: center"&gt;754&lt;/td&gt;
 &lt;td style="text-align: center"&gt;613&lt;/td&gt;
 &lt;td style="text-align: center"&gt;571&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td style="text-align: left"&gt;純利益（億円）&lt;/td&gt;
 &lt;td style="text-align: center"&gt;101&lt;/td&gt;
 &lt;td style="text-align: center"&gt;93&lt;/td&gt;
 &lt;td style="text-align: center"&gt;46&lt;/td&gt;
 &lt;td style="text-align: center"&gt;12&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td style="text-align: left"&gt;売上高純利益率&lt;/td&gt;
 &lt;td style="text-align: center"&gt;13.5%&lt;/td&gt;
 &lt;td style="text-align: center"&gt;12.3%&lt;/td&gt;
 &lt;td style="text-align: center"&gt;7.6%&lt;/td&gt;
 &lt;td style="text-align: center"&gt;2.1%&lt;/td&gt;
 &lt;/tr&gt;
 &lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;売上高はピークから大きく減少し、純利益に至っては &lt;strong&gt;12億円&lt;/strong&gt; まで落ち込んでいます。利益率はわずか &lt;strong&gt;2.1%&lt;/strong&gt;。かつての高収益体質の面影はありません。&lt;/p&gt;</description></item></channel></rss>