<?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/ja/companies/3040001029379/</link><description>Recent content in 株式会社オリエンタルランド on OKURIRU ブログ</description><generator>Hugo</generator><language>ja</language><atom:link href="https://okuriru.com/ja/companies/3040001029379/index.xml" rel="self" type="application/rss+xml"/><item><title>【4661】オリエンタルランド：夢の国、3300億円の大航海へ。人手不足の波高し、それでも舵を切る理由</title><link>https://okuriru.com/ja/2026/0131-oriental-land-analysis/</link><pubDate>Sat, 31 Jan 2026 08:00:00 +0900</pubDate><guid>https://okuriru.com/ja/2026/0131-oriental-land-analysis/</guid><description>&lt;p&gt;こんにちは。福岡で妻と子と3人暮らし、okuriru.com開発者の「中の人」です。&lt;/p&gt;
&lt;p&gt;最近、子供が「ミッキーに会いたい！」と連呼するようになりました。福岡からディズニーランドへの遠征は、我が家にとっては一大プロジェクト。旅費を計算しながら、「このお金を変動費ではなく投資に回せば、将来ミッキーが向こうから会いに来てくれるのでは（優待で）？」などと、夢のないことを考えてしまうのが個人投資家の職業病ですね。&lt;/p&gt;
&lt;p&gt;さて、今回はそんな「夢の国」の支配人、&lt;strong&gt;オリエンタルランド (4661)&lt;/strong&gt; を分析します。
okuriru.comのデータが示すのは、単なるテーマパーク運営会社ではなく、「&lt;strong&gt;圧倒的ブランド力でインフレを味方につける、最強の集金マシン&lt;/strong&gt;」としての姿でした。&lt;/p&gt;
&lt;p&gt;しかし、その盤石に見える城壁の内側で、経営陣は「&lt;strong&gt;3,300億円&lt;/strong&gt;」という社運をかけた賭けに出ようとしています。なぜ彼らは、陸を離れて海（クルーズ）へ出るのか？ その決断の裏にある財務の真実を、ご一緒に紐解いていきましょう。&lt;/p&gt;
&lt;h2 id="1-成長性効率性魔法の値段は上がり続ける"&gt;1. 成長性・効率性：魔法の値段は上がり続ける&lt;/h2&gt;
&lt;p&gt;まずは、直近の業績トレンドをokuriru.comのデータ（CSV）から見てみましょう。驚くべきは、その利益率の高さと回復力です。&lt;/p&gt;
&lt;div id="echart-growth-1782539714226001000" style="width: 100%; height: 420px;"&gt;&lt;/div&gt;



&lt;script&gt;
 document.addEventListener('DOMContentLoaded', function () {
 var el = document.getElementById('echart-growth-1782539714226001000');
 var scriptSrc = '\/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\":[2757.3,4831.2,6184.9,6793.7],\"itemStyle\":{\"color\":\"#5470c6\"},\"name\":\"売上高\",\"type\":\"bar\",\"yAxisIndex\":0},{\"data\":[80.7,807.3,1202.3,1241.6],\"itemStyle\":{\"color\":\"#91cc75\"},\"name\":\"純利益\",\"type\":\"bar\",\"yAxisIndex\":0},{\"data\":[2.9,16.7,19.4,18.3],\"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;2,757&lt;/td&gt;
 &lt;td style="text-align: center"&gt;4,831&lt;/td&gt;
 &lt;td style="text-align: center"&gt;6,185&lt;/td&gt;
 &lt;td style="text-align: center"&gt;6,794&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;81&lt;/td&gt;
 &lt;td style="text-align: center"&gt;807&lt;/td&gt;
 &lt;td style="text-align: center"&gt;1,202&lt;/td&gt;
 &lt;td style="text-align: center"&gt;1,242&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;2.9%&lt;/td&gt;
 &lt;td style="text-align: center"&gt;16.7%&lt;/td&gt;
 &lt;td style="text-align: center"&gt;19.4%&lt;/td&gt;
 &lt;td style="text-align: center"&gt;18.3%&lt;/td&gt;
 &lt;/tr&gt;
 &lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&lt;em&gt;※単位：億円（端数切り捨て）。okuriru.com算出データに基づく。&lt;/em&gt;&lt;/p&gt;</description></item></channel></rss>