オールドパーの種類とおじさんの正体|シルバー・12年の違いと旧ボトル解説

【PR】

.table-of-contents li:has(a[href="#heading-17"]) { display: none !important; }

お酒の通販LINXAS(リンクサス)でウイスキーを探す

かつて「憧れのウイスキー」と言われたオールドパー。今は色々な場所で見かけるようになりましたが、100年以上の歴史と世界が認める実力があります。
この記事では、オールドパーが長年愛される理由、味わいや特徴、ボトルの物語を解説
「オールドパー12年」や「オールドパー シルバー」など、主要な種類と選び方もご案内します。
オールドパーの魅力を再発見したい方、初めての方にも役立つ情報をお届けします。

初めての方へ|お酒の買取サービス案内バナー

オールドパーとは?長く愛され続けるスコッチウイスキー

オールドパー12年のボトル正面デザイン

オールドパーは100年以上続く、有名なスコッチウイスキーです。日本では昔から知られたウイスキーという印象が強いかもしれませんが、品質の高さと時代に合わせた変化が、その背景にはあります。
今も人気があるのは、昔を懐かしむだけでなく、ずっと変わらない価値があるからです。

日本で初めて紹介されたスコッチ「オールドパー」

オールドパー(Old Parr)はスコッチウイスキーの銘柄の一つです。スコッチの中でも、複数のモルト原酒とグレーンウイスキーを組み合わせたブレンデッドウイスキーに分類されます。
ただしスコッチですが、製造はイギリスの酒造メーカーである「ディアジオ社」の子会社となる、マクドナルド・グリンリース社がおこなっています。
オールドパーは19世紀から愛されてきた歴史あるウイスキーであり、日本には明治維新の頃に持ち込まれたと言われています。
当時、岩倉具視の使節団が明治天皇に献上したことで知られており、日本に輸入・紹介されたスコッチとしては初めてのブランドであったといいます

オールドパーが世界的に愛され続けるのはなぜ?

オールドパーは、19世紀後半に生まれたブランドです。その名前は、当時長寿で知られた人物のトーマス・パーにちなんでおり、長生きや熟成の象徴とされています。
100年以上にわたりブランドが受け継がれてきた事実そのものが、品質と信頼の証といえるでしょう。
そんなオールドパーが世界的に支持される理由としては、時代や国を問わず受け入れられるバランスの取れた味わいがあげられます。ブレンデッドウイスキーならではの安定感と飲みやすさは、ウイスキーに親しみのある層だけでなく、幅広い世代から支持を集めてきました。
また日本においてオールドパーが特別な存在となった背景には、明治以降に広がった洋酒文化があります。戦後から高度経済成長期にかけては、接待や公式の酒席で選ばれる機会も多く、「格式がありながらも手が届くウイスキー」として定着しました。
こうした時代性とともに築かれた評価が、独自のイメージを形づくり、今なお語り継がれているのです。

品名 画像 リンクサス酒販 Amazon最安 楽天最安 お酒買取 ポイント
オールドパー シルバー オールドパー シルバー 日本限定のエントリーモデル。軽快な柑橘系の香りと優しい甘みで、ハイボールにも向く飲みやすさ。
オールドパー 12年 オールドパー 12年 40種以上の原酒をブレンドした定番品。甘みと柑橘感の調和が良く、食中酒にも使いやすい万能型。
オールドパー 18年 オールドパー 18年 18年熟成モルト由来の濃厚な甘みとクリーミーな口当たり。ほのかなスモーキーさも楽しめる長熟ブレンド。
オールドパー クラシック 18年 オールドパー クラシック 18年 2019年終売の希少ボトル。現行品よりコク深く、熟成感のある味わいで年々価値が高まっている1本。
オールドパー スーペリア オールドパー スーペリア 熟成年数非公開のプレミアムブレンド。シェリー香と奥深いコク、長く続く余韻を楽しめる贅沢な1本。
// 初期表示時におすすめ順でソート document.addEventListener('DOMContentLoaded', function() { const tables = document.querySelectorAll('.product-table-frontend'); tables.forEach(function(tableContainer) { const tableId = tableContainer.querySelector('table').dataset.tableId; const recommendBtn = tableContainer.querySelector('.product-table-sort-btn.active'); if (recommendBtn) { // 初期ソートを実行 sortProductTable(tableId, 'recommend_score', recommendBtn, true); } }); }); function sortProductTable(tableId, sortBy, button, isInitialSort = false) { // テーブルコンテナを取得 const container = document.getElementById(tableId); if (!container) { console.error('Container not found:', tableId); return; } // テーブル要素を取得 const table = container.querySelector('.product-table[data-table-id="' + tableId + '"]'); if (!table) { console.error('Table not found:', tableId); return; } const tbody = table.querySelector('tbody'); const rows = Array.from(tbody.querySelectorAll('tr')); // 現在の状態を保持 const wasActive = button.classList.contains('active'); const wasAscending = button.classList.contains('ascending'); // ソート方向を決定 let isAscending = false; // デフォルトは降順 // 初期ソートの場合は降順を維持 if (isInitialSort) { isAscending = false; } else if (wasActive) { // 既にアクティブなボタンをクリックした場合は方向を切り替え isAscending = !wasAscending; } // 同じテーブルのボタンからのみアクティブクラスを削除 const sameTableButtons = container.querySelectorAll('.product-table-sort-btn'); sameTableButtons.forEach(function(btn) { tbody.classList.remove('sorted-ascending', 'sorted-descending'); btn.classList.remove('active', 'ascending', 'descending'); }); // クリックされたボタンにアクティブクラスを追加 button.classList.add('active'); button.classList.add(isAscending ? 'ascending' : 'descending'); tbody.classList.add(isAscending ? 'sorted-ascending' : 'sorted-descending'); // 行をソート(data-sort-info属性を使用) rows.sort(function(a, b) { // data-sort-info属性からJSONデータを取得 const aData = a.dataset.sortInfo ? a.dataset.sortInfo.replace(/[\n\t]/g, '') : ''; const bData = b.dataset.sortInfo ? b.dataset.sortInfo.replace(/[\n\t]/g, '') : ''; // console.log('Row data - A:', aData, 'B:', bData); let aValue, bValue; if (sortBy === 'recommend_score') { // おすすめスコアでソート const aJson = aData ? JSON.parse(aData) : {}; const bJson = bData ? JSON.parse(bData) : {}; aValue = aJson.recommend_score || 0; bValue = bJson.recommend_score || 0; } else if (sortBy === 'price') { // 価格でソート - JSONから価格を取得 const aJson = aData ? JSON.parse(aData) : {}; const bJson = bData ? JSON.parse(bData) : {}; aValue = aJson.price || 0; bValue = bJson.price || 0; } // console.log('Sort values - A:', aValue, 'B:', bValue); // ソート方向に応じて並び替え if (isAscending) { return aValue - bValue; } else { return bValue - aValue; } }); // 既存のランキング数字を削除 const currentTable = document.querySelector(`table[data-table-id="${tableId}"]`); const existingRankings = currentTable.querySelectorAll('.ranking-count'); existingRankings.forEach(function(ranking) { ranking.remove(); }); // DOMを更新 tbody.innerHTML = ''; const totalRows = rows.length; rows.forEach(function(row, index) { // ランキング数字を追加(昇順の場合は逆順の番号を付ける) const count = isAscending ? (totalRows - index) : (index + 1); const firstCell = row.querySelector('td:first-child'); if (firstCell) { const rankingSpan = document.createElement('span'); rankingSpan.className = `ranking-count --count-${count}`; rankingSpan.textContent = count; firstCell.insertBefore(rankingSpan, firstCell.firstChild); } tbody.appendChild(row); }); }

おじさんのアイコンや特殊なボトルデザインでも有名に

オールドパーにかかれるおじさんは誰?

オールドパーのアイコンには、たくましい髭を蓄えたおじさんが使われています。これはトーマス・パーという人物の肖像画で、この人物の愛称こそが「オールドパー」なのです
上記でも軽く紹介したようにトーマス・パーはイギリス史上もっとも長生きしたと言われる人物で、なんと152歳まで生きていました。農夫であった彼は、80歳で初めての結婚をする、105歳で別の女性と不倫し懺悔させられる、122歳で再婚をするなど破天荒で活発な人生を歩んでいたそうです。
オールドパーのウイスキーの生みの親であるグリンリース兄弟は、そんなトーマス・パーの長寿にあやかりウイスキーに「オールドパー」と名付けています。
長寿を“ウイスキー熟成”に、そしてトーマスパーの経験と知識を“ブレンド技術”になぞらえています。

「おじさんウイスキー」だが古臭いウイスキーではない

このような背景から、オールドパーは「おじさんのアイコンを持つウイスキー」として知られるようになりました。
「おじさんウイスキー」と呼ばれることも多いため、詳しく知らない方の中には、年齢層が高い人向けのウイスキー、あるいは古い時代の酒という印象を持つかもしれません。
しかし、おじさんウイスキーと言われているからといって、味わいや価値まで時代遅れというわけではありません。オールドパーは、むしろ時代とともに評価を高めてきたウイスキーと言えるでしょう。一時的なブームに左右されず、長年愛され続けていることこそ、その完成度の高さを証明しています。
実際にロックで飲むと、程よいピートの香りとフルーティーな風味が際立ち、現代的な感覚でも十分においしくたのしえっます。「おじさんウイスキー」という言葉には、長寿や経験、熟成といった意味合いが含まれており、単なる古臭さではなく、“物語のあるウイスキー”として捉えるのが自然だと思います。

斜めに立つボトルがゲン担ぎ・縁起物としても人気に


オールドパーといえば、ボトルデザインが特徴的なことでも有名です。陶器ボトルのひび割れをイメージして作られたこのボトルは、中身の残量がどれほどであっても“斜めに立つ”という設計になっています
傾けても倒れないこのボトルは、右肩上がりで縁起が良いと言われ、ゲン担ぎ・縁起物としても愛されてきました。吉田茂や田中角栄といった大物政治家や上流人たちも、オールドパーを愛飲していたそうです。
昭和の時代にはサラリーマンにとっての憧れのウイスキー的な立ち位置で、BARなどで高級品として愛されていました。
現代では若者も手に届く価格帯となっていますが、贈答品・ギフト向けウイスキーとしての需要もあり広い世代に愛され続けています。

オールドパーの特徴や味わい!キーモルトはクラガンモア

オールドパー12年とショットグラスに注いだウイスキー

クラガンモア主体の麦の甘みを感じる味わい

オールドパーはモルト原酒とグレーン原酒を組み合わせたブレンデッドウイスキーに該当します。
キーモルトにはスコットランド・スペイサイド地方の「クラガンモア」と「グレンダラン」が使われています。メインの原酒はクラガンモアとなっていて、麦の甘みを感じられる味わいに仕上がっています。
複数の原酒をうまく組み合わせたオールドパーはバランスに優れたウイスキーでもあり、飲みやすい味わいに定評があります。フルーティーなアロマ、上品な甘さ、調和の取れた柔らかな口当たり、そして微かに潜むスモーキーさがオールドパーの特徴です。
なおオールドパー18年のみ、グレーン原酒は使われていないためヴァデットモルトの扱いになります。熟成期間が長く、さらにモルトのみであることから濃厚な味わいに仕上がっています。

世界的にも認められたオールドパーの評価

  • オールドパー12年・・・2022 SFWSC 最優秀金賞受賞、SWM銀賞受賞
  • オールドパー18年・・・2022 SFWSC 金賞受賞、SWM金賞受賞
  • オールドパーシルバー・・・2022 SWM 金賞受賞
  • オールドパースーペリア・・・2022 SWM 銀賞受賞

オールドパーは世界的な評価も高く、名誉ある賞を何度も受賞しています。
例えば2022年にはサンフランシスコ・ワールド・スピリッツ・コンペティションという権威あるコンペティションにて、オールドパー12年が最優秀金賞であるダブルゴールドを受賞しています。
2022年だけでもオールドパー全体で6つの賞を獲得しています。

さらにオールドパーは一般ユーザーの口コミ評価も高く、「美味しい」との声が多数投稿されています。なめらかさやバランスの良さには特に定評があり、万人受けするウイスキーと言えるかもしれません。
またオールドパーは、水割りやハイボールなど多彩な飲み方で楽しめるのも特徴です。飲み方によって味の感じ方が変わってくるので、ウイスキーが好きで色々試してみたいという方にとっては特におすすめです。

オールドパーのラインナップ・種類一覧!シルバーや12年の違いは?

オールドパーには現在4つのラインナップが登場しています。
それぞれのボトルの特徴や価格を紹介します。

.linx-recommend-69425e211b363 { margin: 10px 0; } .linx-recommend-69425e211b363 .rating-stars { display: inline-block; margin: 5px 0; } .linx-recommend-69425e211b363 .star { color: #ffd700 !important; font-size: 1.2em; margin-right: 2px; } .linx-recommend-69425e211b363 .star.empty { color: #ddd !important; } .linx-product-image-container { position: relative; display: block; margin: 0 auto; max-width: 300px; width: 100%; text-align:center; } /* スマホ表示時の中央寄せ */ @media (max-width: 768px) { .linx-product-left { text-align: center; margin: 0 auto; } .linx-product-image-container { display: block; margin: 0 auto; } } .linx-product-image-container img { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: transform 0.3s ease; } .linx-product-image-container a:hover img { transform: scale(1.02); } .linx-image-source-badge { position: absolute; top: 8px; right: 8px; background: rgba(0,0,0,0.7); color: white; padding: 2px 6px; border-radius: 4px; font-size: 0.75em; display:none; } .amazon-source { background: #ff9900 !important; } .shopify-source { background: #96bf48 !important; } .wordpress-source { background: #21759b !important; } .none-source { background: #999 !important; }

オールドパー シルバー

  • ウイスキーの種類:ブレンデッドスコッチウイスキー
  • アルコール度数:40%
  • 熟成年数:-
  • 価格:750ml 約3,300円

オールドパー シルバーは4,000円以下で入手可能なエントリーモデルの1本です。
日本市場限定販売で、2015年発売開始とオールドパーの中ではもっとも新しいです
ノンエイジの飲みやすいウイスキーで、柑橘系のフルーツを思わせる軽快な味わいの中に、蜂蜜やバニラのような甘みがうまくマッチしています。
マイナス6度のチルフィルタード製法で作られており、かつて極寒のスコットランドの中で生み出されていたオールドパーの味が再現されています。
スムースな味わいでピートは少なめであり、しっかりとした甘みがありながらもアルコールの刺激は少なく飲みやすいです。
ソーダで割るとフレッシュさや切れ味が増すのでおすすめです。

.linx-recommend-69425e211b4ae { margin: 10px 0; } .linx-recommend-69425e211b4ae .rating-stars { display: inline-block; margin: 5px 0; } .linx-recommend-69425e211b4ae .star { color: #ffd700 !important; font-size: 1.2em; margin-right: 2px; } .linx-recommend-69425e211b4ae .star.empty { color: #ddd !important; } .linx-product-image-container { position: relative; display: block; margin: 0 auto; max-width: 300px; width: 100%; text-align:center; } /* スマホ表示時の中央寄せ */ @media (max-width: 768px) { .linx-product-left { text-align: center; margin: 0 auto; } .linx-product-image-container { display: block; margin: 0 auto; } } .linx-product-image-container img { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: transform 0.3s ease; } .linx-product-image-container a:hover img { transform: scale(1.02); } .linx-image-source-badge { position: absolute; top: 8px; right: 8px; background: rgba(0,0,0,0.7); color: white; padding: 2px 6px; border-radius: 4px; font-size: 0.75em; display:none; } .amazon-source { background: #ff9900 !important; } .shopify-source { background: #96bf48 !important; } .wordpress-source { background: #21759b !important; } .none-source { background: #999 !important; }

オールドパー 12年

  • ウイスキーの種類:ブレンデッドスコッチウイスキー
  • アルコール度数:40%
  • 熟成年数:12年
  • 価格:750ml 約4,000円

オールドパー12年は酒齢12年以上の原酒がブレンドされた熟成タイプのブレンデッドウイスキーです。
ゴールド色のラベルデザインが目印です。
40種類を超える原酒が絶妙にブレンドされていて、調和の取れた味わいを堪能できる名品です
オールドパーらしい甘い香りに柑橘系のフルーツ感、そしてクリーンな味わいの中に茶葉のようなアロマやほのかなピートも潜んでいます。
岩倉使節団が日本に持ち帰ってきたウイスキーであり、長年に渡り日本国内で愛されてきました。
水や炭酸水を加えても味のバランスが崩れないのがオールドパー12年の最大の魅力であり、食中酒にも採用しやすく和食との相性もバッチリです。

.linx-recommend-69425e211b650 { margin: 10px 0; } .linx-recommend-69425e211b650 .rating-stars { display: inline-block; margin: 5px 0; } .linx-recommend-69425e211b650 .star { color: #ffd700 !important; font-size: 1.2em; margin-right: 2px; } .linx-recommend-69425e211b650 .star.empty { color: #ddd !important; } .linx-product-image-container { position: relative; display: block; margin: 0 auto; max-width: 300px; width: 100%; text-align:center; } /* スマホ表示時の中央寄せ */ @media (max-width: 768px) { .linx-product-left { text-align: center; margin: 0 auto; } .linx-product-image-container { display: block; margin: 0 auto; } } .linx-product-image-container img { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: transform 0.3s ease; } .linx-product-image-container a:hover img { transform: scale(1.02); } .linx-image-source-badge { position: absolute; top: 8px; right: 8px; background: rgba(0,0,0,0.7); color: white; padding: 2px 6px; border-radius: 4px; font-size: 0.75em; display:none; } .amazon-source { background: #ff9900 !important; } .shopify-source { background: #96bf48 !important; } .wordpress-source { background: #21759b !important; } .none-source { background: #999 !important; }

オールドパー 18年

  • ウイスキーの種類:ブレンデッドスコッチウイスキー
  • アルコール度数:40%
  • 熟成年数:18年
  • 価格:750ml 約10,000円

オールドパー18年は、18年もののモルト原酒をブレンドしたウイスキーで日本国内で発売されているオールドパーの中ではもっとも長熟な1本です。
オールドパー18年は箱やラベルの色が黒に統一されています。
トフィの甘さやモルトの甘さを感じる濃厚なウイスキーで、舌触りは非常にクリーミーです。
かすかなスモーキーさも併せ持っており、バランスに優れています。
ストレート・ロックとさまざまな飲み方で楽しむことが可能で、温度帯による違いを堪能できます。

.linx-recommend-69425e211b74e { margin: 10px 0; } .linx-recommend-69425e211b74e .rating-stars { display: inline-block; margin: 5px 0; } .linx-recommend-69425e211b74e .star { color: #ffd700 !important; font-size: 1.2em; margin-right: 2px; } .linx-recommend-69425e211b74e .star.empty { color: #ddd !important; } .linx-product-image-container { position: relative; display: block; margin: 0 auto; max-width: 300px; width: 100%; text-align:center; } /* スマホ表示時の中央寄せ */ @media (max-width: 768px) { .linx-product-left { text-align: center; margin: 0 auto; } .linx-product-image-container { display: block; margin: 0 auto; } } .linx-product-image-container img { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: transform 0.3s ease; } .linx-product-image-container a:hover img { transform: scale(1.02); } .linx-image-source-badge { position: absolute; top: 8px; right: 8px; background: rgba(0,0,0,0.7); color: white; padding: 2px 6px; border-radius: 4px; font-size: 0.75em; display:none; } .amazon-source { background: #ff9900 !important; } .shopify-source { background: #96bf48 !important; } .wordpress-source { background: #21759b !important; } .none-source { background: #999 !important; }

オールドパー スーペリア

  • ウイスキーの種類:ブレンデッドスコッチウイスキー
  • アルコール度数:43%
  • 熟成年数:-
  • 価格:750ml 約14,000円

オールドパー スーペリアは希少な原酒を、マスターブレンダーによる熟練の技術でブレンドしたプレミアム・スコッチです。
あえて熟成年数にこだわらず、ピークを迎えた原酒が贅沢に使われています。
コクがあり奥深く複雑な味わいを堪能できます。
シェリー酒を思わせるような深い香りと華やかさ、そしてナッツのような香ばしい余韻と磯の香り、スモーキーな余韻もあります。
味わいが長く続いていくので、じっくり、ゆっくり楽しみたいときにおすすめの1本です。

オールドパーには希少価値の高い旧ボトル・終売ボトルも

オールドパーの旧ボトルとは


現行品として国内流通しているオールドパーは先ほど紹介した4本ですが、このほかオールドパーには旧ボトル(オールドボトル)と呼ばれるボトルも存在しています。
時代が違うとラベルデザインやボトルデザインに違いがあり、中のウイスキーそのものの味にも差があるようです
オールドパーの旧ボトルは希少価値の高さから、現行品よりも高額で取引されています。オールドボトルは味わいが現行品に比べ骨太であり、濃厚でガツンとした味が好きな方におすすめです。

現行品と入れ替わりで終売になったボトルも
.linx-recommend-69425e211b894 { margin: 10px 0; } .linx-recommend-69425e211b894 .rating-stars { display: inline-block; margin: 5px 0; } .linx-recommend-69425e211b894 .star { color: #ffd700 !important; font-size: 1.2em; margin-right: 2px; } .linx-recommend-69425e211b894 .star.empty { color: #ddd !important; } .linx-product-image-container { position: relative; display: block; margin: 0 auto; max-width: 300px; width: 100%; text-align:center; } /* スマホ表示時の中央寄せ */ @media (max-width: 768px) { .linx-product-left { text-align: center; margin: 0 auto; } .linx-product-image-container { display: block; margin: 0 auto; } } .linx-product-image-container img { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: transform 0.3s ease; } .linx-product-image-container a:hover img { transform: scale(1.02); } .linx-image-source-badge { position: absolute; top: 8px; right: 8px; background: rgba(0,0,0,0.7); color: white; padding: 2px 6px; border-radius: 4px; font-size: 0.75em; display:none; } .amazon-source { background: #ff9900 !important; } .shopify-source { background: #96bf48 !important; } .wordpress-source { background: #21759b !important; } .none-source { background: #999 !important; }

オールドパー クラシック 18年

また現行品と入れ替わるような形で終売になったボトルもあります。「オールドパー クラシック18年」もその一つで、こちらは2019年秋ごろ、現行品の18年と入れ替わる形で終売になりました
今後ますます希少になると予想されているため、現行品のオールドパーよりも高額になっていて、流通品は3万円近い価格が付けられていることもあります。

旧ボトル・終売品の注意点

旧ボトルや終売品は、珍しさから高値で取引される傾向にあります。ただし高いからといって、必ずしもクオリティが高いとは限りません
流通するボトルの中には、劣化した味のものも存在するので注意しましょう。劣化したオールドパーの旧ボトルは、苦味や酸っぱさが増した印象になってしまいます。
そのためオールドボトルを購入する際は状態に注意しましょう。できるだけ信頼のおける酒販店からの購入がおすすめです。
特に旧ボトル・終売品はメーカーからの正規販売品ではなくなり、二時流通品が基本となるので、鑑定済みのボトルを購入することをおすすめします。

▶︎ リンクサスでオールドパーの在庫をチェックする

オールドパーはこんな人におすすめ!他のスコッチとの違いは?

ブラックラベルをロックグラスに注ぐウイスキーのシーン

オールドパーがおすすめな人の特徴

  • 流行よりも「定番」や「安心感」を重視したい人
  • ウイスキーに強いクセは求めないが、薄すぎる味も物足りない人
  • 昔から名前を知っている銘柄を、改めてじっくり楽しみたい人
  • 家飲みや落ち着いた晩酌用のウイスキーを探している人
  • 父親や年配の方への贈り物で失敗したくない人

オールドパーは、特に上記のような方におすすめです。
けばけばしさやとがったところはありませんが、飽きが来ず、どんな場面にも合うのが魅力です。「センスの良い人が選ぶ1本」として、長く付き合えるでしょう。

他のブレンデッドスコッチとの違いは?

オールドパー以外にも、飲みやすいブレンデッドスコッチはたくさんあります。
ここでは、代表的なブレンデッドスコッチとオールドパーを比較し、それぞれの違いを簡潔に紹介します。

品名 画像 おすすめスコア リンクサス酒販 Amazon最安 楽天最安 お酒買取 ポイント アルコール度数 香りのタイプ 飲みごたえ 産地
シーバスリーガル 18年 シーバスリーガル 18年
(5/5)
複雑で濃厚、ドライフルーツとチョコの香る上質な味わい 40 モルト リッチ スコットランド
ジョニーウォーカー ブルーラベル ジョニーウォーカー ブルーラベル
(5/5)
最高峰のブレンド。深いコクと希少性で特別感抜群。 40 バニラ リッチ スコットランド
デュワーズ 15年 ダブルエイジ デュワーズ 15年 ダブルエイジ ダブルエイジ製法による滑らかな口当たり。蜂蜜やバニラの甘みと複雑さを備えた高コスパ熟成ウイスキー。
バランタイン17年 バランタイン17年
(4/5)
長期熟成による深いコクと香り、まろやかで上品な味わいが魅力 40 バニラ スムース スコットランド
ホワイトホース ホワイトホース 力強いスモーキーさが特徴の個性派ブレンデッド。ピート感を気軽に楽しみたい人向けの定番銘柄。
// 初期表示時におすすめ順でソート document.addEventListener('DOMContentLoaded', function() { const tables = document.querySelectorAll('.product-table-frontend'); tables.forEach(function(tableContainer) { const tableId = tableContainer.querySelector('table').dataset.tableId; const recommendBtn = tableContainer.querySelector('.product-table-sort-btn.active'); if (recommendBtn) { // 初期ソートを実行 sortProductTable(tableId, 'recommend_score', recommendBtn, true); } }); }); function sortProductTable(tableId, sortBy, button, isInitialSort = false) { // テーブルコンテナを取得 const container = document.getElementById(tableId); if (!container) { console.error('Container not found:', tableId); return; } // テーブル要素を取得 const table = container.querySelector('.product-table[data-table-id="' + tableId + '"]'); if (!table) { console.error('Table not found:', tableId); return; } const tbody = table.querySelector('tbody'); const rows = Array.from(tbody.querySelectorAll('tr')); // 現在の状態を保持 const wasActive = button.classList.contains('active'); const wasAscending = button.classList.contains('ascending'); // ソート方向を決定 let isAscending = false; // デフォルトは降順 // 初期ソートの場合は降順を維持 if (isInitialSort) { isAscending = false; } else if (wasActive) { // 既にアクティブなボタンをクリックした場合は方向を切り替え isAscending = !wasAscending; } // 同じテーブルのボタンからのみアクティブクラスを削除 const sameTableButtons = container.querySelectorAll('.product-table-sort-btn'); sameTableButtons.forEach(function(btn) { tbody.classList.remove('sorted-ascending', 'sorted-descending'); btn.classList.remove('active', 'ascending', 'descending'); }); // クリックされたボタンにアクティブクラスを追加 button.classList.add('active'); button.classList.add(isAscending ? 'ascending' : 'descending'); tbody.classList.add(isAscending ? 'sorted-ascending' : 'sorted-descending'); // 行をソート(data-sort-info属性を使用) rows.sort(function(a, b) { // data-sort-info属性からJSONデータを取得 const aData = a.dataset.sortInfo ? a.dataset.sortInfo.replace(/[\n\t]/g, '') : ''; const bData = b.dataset.sortInfo ? b.dataset.sortInfo.replace(/[\n\t]/g, '') : ''; // console.log('Row data - A:', aData, 'B:', bData); let aValue, bValue; if (sortBy === 'recommend_score') { // おすすめスコアでソート const aJson = aData ? JSON.parse(aData) : {}; const bJson = bData ? JSON.parse(bData) : {}; aValue = aJson.recommend_score || 0; bValue = bJson.recommend_score || 0; } else if (sortBy === 'price') { // 価格でソート - JSONから価格を取得 const aJson = aData ? JSON.parse(aData) : {}; const bJson = bData ? JSON.parse(bData) : {}; aValue = aJson.price || 0; bValue = bJson.price || 0; } // console.log('Sort values - A:', aValue, 'B:', bValue); // ソート方向に応じて並び替え if (isAscending) { return aValue - bValue; } else { return bValue - aValue; } }); // 既存のランキング数字を削除 const currentTable = document.querySelector(`table[data-table-id="${tableId}"]`); const existingRankings = currentTable.querySelectorAll('.ranking-count'); existingRankings.forEach(function(ranking) { ranking.remove(); }); // DOMを更新 tbody.innerHTML = ''; const totalRows = rows.length; rows.forEach(function(row, index) { // ランキング数字を追加(昇順の場合は逆順の番号を付ける) const count = isAscending ? (totalRows - index) : (index + 1); const firstCell = row.querySelector('td:first-child'); if (firstCell) { const rankingSpan = document.createElement('span'); rankingSpan.className = `ranking-count --count-${count}`; rankingSpan.textContent = count; firstCell.insertBefore(rankingSpan, firstCell.firstChild); } tbody.appendChild(row); }); }
シーバスリーガルとの違い
.linx-recommend-69425e211b9d1 { margin: 10px 0; } .linx-recommend-69425e211b9d1 .rating-stars { display: inline-block; margin: 5px 0; } .linx-recommend-69425e211b9d1 .star { color: #ffd700 !important; font-size: 1.2em; margin-right: 2px; } .linx-recommend-69425e211b9d1 .star.empty { color: #ddd !important; } .linx-product-image-container { position: relative; display: block; margin: 0 auto; max-width: 300px; width: 100%; text-align:center; } /* スマホ表示時の中央寄せ */ @media (max-width: 768px) { .linx-product-left { text-align: center; margin: 0 auto; } .linx-product-image-container { display: block; margin: 0 auto; } } .linx-product-image-container img { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: transform 0.3s ease; } .linx-product-image-container a:hover img { transform: scale(1.02); } .linx-image-source-badge { position: absolute; top: 8px; right: 8px; background: rgba(0,0,0,0.7); color: white; padding: 2px 6px; border-radius: 4px; font-size: 0.75em; display:none; } .amazon-source { background: #ff9900 !important; } .shopify-source { background: #96bf48 !important; } .wordpress-source { background: #21759b !important; } .none-source { background: #999 !important; }

シーバスリーガル 18年

(5/5)

シーバスリーガルは、なめらかで華やかなブレンデッドスコッチとして知られています。オールドパーと比較すると、シーバスはより今風で洗練された印象を与えるでしょう。
一方、オールドパーは落ち着いたコクと穏やかな後味が特徴で、昔ながらの味わいを好む方におすすめです。
【関連リンク】シーバスリーガルは美味しい?人気の飲み方・ハイボールにも合うおすすめ銘柄10選

ジョニーウォーカーとの違い
.linx-recommend-69425e211bb1b { margin: 10px 0; } .linx-recommend-69425e211bb1b .rating-stars { display: inline-block; margin: 5px 0; } .linx-recommend-69425e211bb1b .star { color: #ffd700 !important; font-size: 1.2em; margin-right: 2px; } .linx-recommend-69425e211bb1b .star.empty { color: #ddd !important; } .linx-product-image-container { position: relative; display: block; margin: 0 auto; max-width: 300px; width: 100%; text-align:center; } /* スマホ表示時の中央寄せ */ @media (max-width: 768px) { .linx-product-left { text-align: center; margin: 0 auto; } .linx-product-image-container { display: block; margin: 0 auto; } } .linx-product-image-container img { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: transform 0.3s ease; } .linx-product-image-container a:hover img { transform: scale(1.02); } .linx-image-source-badge { position: absolute; top: 8px; right: 8px; background: rgba(0,0,0,0.7); color: white; padding: 2px 6px; border-radius: 4px; font-size: 0.75em; display:none; } .amazon-source { background: #ff9900 !important; } .shopify-source { background: #96bf48 !important; } .wordpress-source { background: #21759b !important; } .none-source { background: #999 !important; }

ジョニーウォーカー ブルーラベル

(5/5)

ジョニーウォーカーは、色々な種類があって、スモーキー味が強いものが多いのが特徴です。
一方、オールドパーは味がそこまで強くなく、全体のバランスが良いのが魅力です。
やや個性のあるスモーキーなウイスキーが好きな方はジョニーウォーカー、飲みやすさを求める方はオールドパーを選ぶと良いでしょう。
【関連リンク】ジョニーウォーカーの種類とランク比較|おすすめ銘柄・定価・黒やブルーラベル迄解説

デュワーズとの違い
.linx-recommend-69425e211bc46 { margin: 10px 0; } .linx-recommend-69425e211bc46 .rating-stars { display: inline-block; margin: 5px 0; } .linx-recommend-69425e211bc46 .star { color: #ffd700 !important; font-size: 1.2em; margin-right: 2px; } .linx-recommend-69425e211bc46 .star.empty { color: #ddd !important; } .linx-product-image-container { position: relative; display: block; margin: 0 auto; max-width: 300px; width: 100%; text-align:center; } /* スマホ表示時の中央寄せ */ @media (max-width: 768px) { .linx-product-left { text-align: center; margin: 0 auto; } .linx-product-image-container { display: block; margin: 0 auto; } } .linx-product-image-container img { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: transform 0.3s ease; } .linx-product-image-container a:hover img { transform: scale(1.02); } .linx-image-source-badge { position: absolute; top: 8px; right: 8px; background: rgba(0,0,0,0.7); color: white; padding: 2px 6px; border-radius: 4px; font-size: 0.75em; display:none; } .amazon-source { background: #ff9900 !important; } .shopify-source { background: #96bf48 !important; } .wordpress-source { background: #21759b !important; } .none-source { background: #999 !important; }

デュワーズ 15年 ダブルエイジ

デュワーズは、すっきりとして飲みやすいハイボールに合うブレンデッドスコッチです。
一方、オールドパーはより深みがあり、ロックやストレートでゆっくり味わいたい方に良いでしょう。
飲みごたえを求めるなら、オールドパーの方がおすすめです。

バランタインとの違い
.linx-recommend-69425e211bd45 { margin: 10px 0; } .linx-recommend-69425e211bd45 .rating-stars { display: inline-block; margin: 5px 0; } .linx-recommend-69425e211bd45 .star { color: #ffd700 !important; font-size: 1.2em; margin-right: 2px; } .linx-recommend-69425e211bd45 .star.empty { color: #ddd !important; } .linx-product-image-container { position: relative; display: block; margin: 0 auto; max-width: 300px; width: 100%; text-align:center; } /* スマホ表示時の中央寄せ */ @media (max-width: 768px) { .linx-product-left { text-align: center; margin: 0 auto; } .linx-product-image-container { display: block; margin: 0 auto; } } .linx-product-image-container img { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: transform 0.3s ease; } .linx-product-image-container a:hover img { transform: scale(1.02); } .linx-image-source-badge { position: absolute; top: 8px; right: 8px; background: rgba(0,0,0,0.7); color: white; padding: 2px 6px; border-radius: 4px; font-size: 0.75em; display:none; } .amazon-source { background: #ff9900 !important; } .shopify-source { background: #96bf48 !important; } .wordpress-source { background: #21759b !important; } .none-source { background: #999 !important; }

バランタイン17年

(4/5)

バランタインは、クセが少なく非常に飲みやすいブレンデッドスコッチです。
オールドパーはバランタインよりも味に厚みがあり、ほんのりとしたピート感が感じられます。
「飲みやすさ+もう一段階の深み」を求める人には、オールドパーが合います。
【関連リンク】バランタインまずい?17年の定価価格・種類・飲み方と正規品と並行輸入品の違いを解説

ホワイトホースとの違い
.linx-recommend-69425e211bdfd { margin: 10px 0; } .linx-recommend-69425e211bdfd .rating-stars { display: inline-block; margin: 5px 0; } .linx-recommend-69425e211bdfd .star { color: #ffd700 !important; font-size: 1.2em; margin-right: 2px; } .linx-recommend-69425e211bdfd .star.empty { color: #ddd !important; } .linx-product-image-container { position: relative; display: block; margin: 0 auto; max-width: 300px; width: 100%; text-align:center; } /* スマホ表示時の中央寄せ */ @media (max-width: 768px) { .linx-product-left { text-align: center; margin: 0 auto; } .linx-product-image-container { display: block; margin: 0 auto; } } .linx-product-image-container img { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: transform 0.3s ease; } .linx-product-image-container a:hover img { transform: scale(1.02); } .linx-image-source-badge { position: absolute; top: 8px; right: 8px; background: rgba(0,0,0,0.7); color: white; padding: 2px 6px; border-radius: 4px; font-size: 0.75em; display:none; } .amazon-source { background: #ff9900 !important; } .shopify-source { background: #96bf48 !important; } .wordpress-source { background: #21759b !important; } .none-source { background: #999 !important; }

ホワイトホース

ホワイトホースは、スモーキーさが際立つ、個性的なブレンデッドスコッチです。
一方、オールドパーはスモーキーさが控えめで、バランスの取れた味わいが特徴です。
個性の強さよりも、穏やかな風味がお好みなら、オールドパーがおすすめです。

オールドパーを美味しく飲む方法!ハイボールやロックが◎

ロックグラスのウイスキーと葉巻を並べた大人の嗜好品

オールドパーは加水しても崩れない、バランスに長けたウイスキーです。飲み方もさまざまなので、ぜひお気に入りを探してみてください。
ここからはオールドパーの飲み方の一例を紹介していきます。

ハイボール

オールドパーに炭酸水を加えて作るハイボールは爽やかさ満点です。
オールドパー:炭酸水=1:3程度になるように割るのがおすすめです。まずはグラスに氷を入れ、オールドパーから炭酸水の順に注いでいきましょう。
雑味の少ないオールドパーのハイボールは食中酒としても飲みやすいです。特に「オールドパーシルバー」や「オールドパー12年」を飲む際におすすめなので、ぜひ試してみてください。
【関連リンク】ハイボールの黄金比|30ml基準の割合何対何?シングル量・濃いめの作り方と氷のコツ

水割り

水割りを作る際は、オールドパー:ミネラルウォーター=1:2のバランスで作るのがおすすめです。こちらも食中酒としておすすめの飲み方で、特に和食に合わせるのにベストです。
水を加えることで香りが花開いた印象になり、ビターな余韻も生まれます。
こちらもオールドパーシルバーやオールドパー12年でまずはお試しすると良いでしょう。もちろんオールドパー18年やオールドパースーペリアを水割りにするのもありです。

オン・ザ・ロック

氷の入ったオン・ザ・ロックは、時間変化と共に味の変化を楽しむことができます。12年、18年といった超熟タイプのオールドパーのほか、「オールドパー スーペリア」を飲む際にもおすすめです
なお氷はすぐに溶け切ってしまわないよう、できるだけ大きめのものを用意するようにしましょう。グラスも大きな氷がそのまま入るような“ロックグラス”で飲むのがベストです。

ミスト

ミストはロックに似た飲み方ですが、大きなロックアイスではなくクラッシュアイスという細かな氷を使って作ります。冷たくひんやりとした感覚になり、オールドパーのもつ華やかで爽やかな印象が一気にUPします。
ロックに比べて氷が溶けやすいので、濃度の変化や温度帯による変化を堪能できます。涼やかな飲み方は夏シーズンにぴったりです。

まとめ

オールドパーは、日本で最初に紹介されたスコッチウイスキーの一つです。これまでの歴史の中で、とても多くの人に愛されてきました。
ラベルデザインやその歴史から「おじさんウイスキー」と呼ばれることもありますが、実際は、時代の流れに左右されずに評価を高めてきた、完成度の高いブレンデッドスコッチです。
またオールドパーは種類ごとに異なる特徴があり、ハイボール、水割り、ロックなど、いろいろな飲み方で楽しめます。普段の晩酌からギフトまで、色々な場面で活躍してくれるでしょう。
歴史と味を知った上で選べば、きっとより美味しく、オールドパーを楽しめるかと思います。
お酒の通販LINXAS(リンクサス)でウイスキーを探す

前後の記事