紬とウィスキー ~ウイスキーブログと着物生地のブログ~

愉しめるウィスキーや素敵な紬生地など中心にご紹介していきます! よろしくお願いいたします。

ウィスキー(157)ラガヴーリン9年

今日は、ラガヴーリンの9年です。昨日同様ちょっと前に豊田市のバーロンケーナさんで頂きました。

2020-01-10-20-40-07-205

このボトルは、アメリカの大ヒットドラマ「ゲーム・オブ・スローンズ」と英国ディアジオ社が、『Game of Thrones Single Malt Scotch Whisky Collection』と題して、所有する8つの蒸留所から発売するシングルモルトです。お値段も各ボトル1万円以上するようで、気軽に買えるような感じではないですが、是非一通り飲んでみたい誘惑に駆られます。

久しぶりのラガヴーリンでしたが、本来のピーティーな感じがそれほど強くなく、適度な甘みとコクがマッチしていてとても飲みやすい仕上がりです。飲み方は、ストレートかトワイスアップ推奨とのことです。

2020-01-10-20-40-43-759
2020-01-10-20-40-19-654

46%でボトルは750㎖。バーではストレートで飲みましたが、まろやかな飲み口ですので、加水はあまりしない方が本来の味わいが楽しめる気がします。このシリーズ、バーで楽しむのが面白いかもしれません。今後も、レビューしていきたいです。
/* * はてなブログに「音読する」ボタンを追加する ** 使い方 - 以下をコピーして デザイン編集 → カスタマイズ → フッタHTML に貼り付け ** 注意 - Web Speech API非対応のブラウザでは音読できません */ function speak (e) { speechSynthesis.cancel(); // Chromeで初回実行時にspeechSynthesis.pause()できない問題を解消するため、空文字で一度speechSynthesis.speak()しておく var empty_utter = new SpeechSynthesisUtterance(''); speechSynthesis.speak(empty_utter); var utter = new SpeechSynthesisUtterance(this.body); speechSynthesis.speak(utter); e.currentTarget.textContent = '停止する'; e.currentTarget.removeEventListener('click', this); e.currentTarget.addEventListener('click', pause); } function pause (e) { speechSynthesis.pause(); e.currentTarget.textContent = '再開する'; e.currentTarget.removeEventListener('click', pause); e.currentTarget.addEventListener('click', resume); } function resume (e) { speechSynthesis.resume(); e.currentTarget.textContent = '停止する'; e.currentTarget.removeEventListener('click', resume); e.currentTarget.addEventListener('click', pause); } (function () { if (!window.speechSynthesis) return; document.querySelectorAll('article.entry').forEach(function (article) { var button = document.createElement('button'); button.type = 'button'; button.className = 'btn'; button.textContent = '音読する'; button.style = 'float: right'; article.querySelector('header').appendChild(button); var body = article.querySelector('.entry-content').textContent; button.addEventListener('click', { handleEvent: speak, body: body }); }); })(); Footer © 2022 GitHub, Inc. Footer navigation Terms Privacy Security Status Docs Contact GitHub Pricing API Training Blog About