コンテンツにスキップ

東川 - (300g)

Taisetsu Coffee

💝 バレンタインデーまであと 0 日!大切な人へ特別なギフトを!💖

¥1,790
商品在庫: Translation missing: ja.general.icons.icon_check_circleアイコン 964在庫あり
☕ お知らせ:2025年12月30日より価格を改定いたしました。世界的な生豆価格高騰によるものです。ご理解いただきありがとうございます。

TAISETSU COFFEEの故郷、北海道「東川町」の名を冠したブレンド。

エチオピアブラジルの2種の豆を浅煎り〜中煎りに焙煎。香り高くすっきりとした飲み心地が特徴です。

大雪山の伏流水で淹れると、より一層おいしくお召し上がりいただけます。天然水やミネラルウォーターでぜひお試しください。

💬 お客様の声

「These coffee beans are wonderfully aromatic and incredibly fresh」 🥰


「午後ののんびりタイムに溶け込んでくれる香りと味です。」


「豆を買ったのは3種目ですが、一番美味しい。私の好みにあってました。」

東川町について

東川町は大雪山国立公園の麓に位置する「写真の町」。上水道がなく、住民全員が大雪山の伏流水で暮らす、水の美しい町です。TAISETSU COFFEEはここで生まれました。

東川町で焙煎

TAISETSU COFFEEは大雪山の麓、東川町で一杯一杯丁寧に焙煎しています。大雪山の伏流水で淹れると、より一層おいしくお召し上がりいただけます。

商品詳細

内容量:300g
焙煎度:浅煎り〜中煎り(ライト〜ミディアムロースト)
原産地:エチオピア、ブラジル
賞味期限:焙煎日より12ヶ月
保存方法:高温多湿を避け、冷暗所で保存
挽き方:豆のまま/中挽き/粗挽きからお選びいただけます

About This Coffee

Higashikawa Blend - Light to Medium Roast

Named after Higashikawa, the hometown of TAISETSU COFFEE. This aromatic blend of Ethiopian and Brazilian beans delivers a clean, refreshing taste with a fragrant aroma.

For the best experience, brew with the pure spring water from Mt. Daisetsu — the same pristine water that flows through our town.

Details

Net Weight: 300g
Roast: Light to Medium
Origin: Ethiopia, Brazil
Best Before: 12 months from roast date
Grind Options: Whole bean / Medium / Coarse


マルチに使えるプチギフトとして大活躍のドリップコーヒー!

Logo list

Customer Reviews

Based on 13 reviews
92%
(12)
8%
(1)
0%
(0)
0%
(0)
0%
(0)
P
P.S.
These coffee beans are wonderfully aromatic and incredibly fresh

So good ! I’m loving it. 🥰

Please let me know if you have any light roast available in the future.

匿名
お世話になっております。

こんばんは
いつもメールをありがとうございます。
以前お話ししました通り B’sキッチンと言う名前のお店の開店準備の為 毎日バタバタ動いております。
業者さんには 開店前ですが taisetsucoffeeさんのコーヒーをお出しして 好評を得ております。
まだまだ 腰を落ち着けて コーヒータイムにはなりませんが 毎日妙薬にはなります。😊
胸を張って レビューをお送りしたいと 日々思っていますので もう暫くお時間をください。
今後とも宜しくお願い申し上げます。

匿名
コスパも味もいい

すぐに送っていただきありがとうございます。
味は私の好みではなかったですが、周りの皆さんは気に入っていました。また違うのを頼んでみます!

s
s.
まどろむ午後の香り

午後2時からチェアに沈み込み、ユーチューブから流れるメロディのなかでまどろみ、ふと気がついて大きく背伸びをして淹れる。そんな午後ののんびりタイムに溶け込んでくれる香りと味です。

匿名
飲みやすい

豆を買ったのは3種目ですが、一番美味しい。
私の好みにあってました。
またリピさせていただきます。

🛒 カート

🛒

Loading... / 読み込み中...

領収書の情報を入力してください

領 収 書
発行日:
TAISETSU COFFEE company info
金額
¥0
(税込)
但し として

いつでも自動更新、スキップ、キャンセルできます。

いつでも自動更新、スキップ、キャンセルできます。

`); printWindow.document.close(); } function saveRyoshusho() { console.log('SAVE functio called -NOT PRINT'); // Direct PDF download using html2canvas + jsPDF const receipt = document.getElementById('ryoshushoReceipt'); const saveBtn = document.querySelector('.ryoshusho-actions button:nth-child(2)'); // Show loading state if (saveBtn) { saveBtn.textContent = '処理中...'; saveBtn.disabled = true; } // Load libraries dynamically if not loaded function loadScript(src) { return new Promise((resolve, reject) => { if (document.querySelector('script[src="' + src + '"]')) { resolve(); return; } const script = document.createElement('script'); script.src = src; script.onload = resolve; script.onerror = reject; document.head.appendChild(script); }); } // Load html2canvas and jsPDF, then generate PDF Promise.all([ loadScript('https://cdnjs.cloudflare.com/ajax/libs/html2canvas/1.4.1/html2canvas.min.js'), loadScript('https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.5.1/jspdf.umd.min.js') ]).then(() => { // Wait a moment for libraries to initialize setTimeout(() => { html2canvas(receipt, { scale: 2, useCORS: true, allowTaint: true, backgroundColor: '#ffffff' }).then(canvas => { const { jsPDF } = window.jspdf; const pdf = new jsPDF('p', 'mm', 'a4'); // A4 dimensions: 210 x 297 mm const pageWidth = 210; const pageHeight = 297; const margin = 15; const contentWidth = pageWidth - (margin * 2); // Calculate image dimensions to fit A4 const imgWidth = contentWidth; const imgHeight = (canvas.height * imgWidth) / canvas.width; // Add image to PDF const imgData = canvas.toDataURL('image/png'); pdf.addImage(imgData, 'PNG', margin, margin, imgWidth, imgHeight); // Generate filename with date const now = new Date(); const dateStr = now.getFullYear() + String(now.getMonth() + 1).padStart(2, '0') + String(now.getDate()).padStart(2, '0'); const filename = 'TAISETSU COFFEE_領収書_' + dateStr + '.pdf'; // Direct download - no dialog! pdf.save(filename); // Restore button if (saveBtn) { saveBtn.textContent = '💾 保存する'; saveBtn.disabled = false; } }).catch(err => { console.error('PDF generation error:', err); alert('PDFの生成に失敗しました'); if (saveBtn) { saveBtn.textContent = '💾 保存する'; saveBtn.disabled = false; } }); }, 100); }).catch(err => { console.error('Library load error:', err); alert('ライブラリの読み込みに失敗しました'); if (saveBtn) { saveBtn.textContent = '💾 保存する'; saveBtn.disabled = false; } }); } // Inject button into cart drawer when it opens function injectRyoshushoButton() { const checkoutBtn = document.getElementById('taisetsuCheckoutBtn'); if (checkoutBtn && !document.getElementById('ryoshusho-cart-btn-injected')) { const btn = document.createElement('button'); btn.type = 'button'; btn.id = 'ryoshusho-cart-btn-injected'; btn.className = 'ryoshusho-cart-btn'; btn.textContent = '領収書を発行する'; btn.onclick = openRyoshushoModal; checkoutBtn.parentNode.insertBefore(btn, checkoutBtn); } } // Watch for cart drawer const cartObserver = new MutationObserver(function(mutations) { injectRyoshushoButton(); }); cartObserver.observe(document.body, { childList: true, subtree: true }); // Also try on page load document.addEventListener('DOMContentLoaded', injectRyoshushoButton); setTimeout(injectRyoshushoButton, 1000); setTimeout(injectRyoshushoButton, 2000);