Watashiについて
講師紹介
日和 Hiyori 先生
高岩 Takaiwa 先生
桜子 Sakurako
ガントラガ Gantulaga 先生
妃佐子 Hisako 先生
サジナ Sajeena 先生
ユウリ Yuuri 先生
てる子 Teruko 先生
まお Mao 先生
相場 Aiba 先生
まい Mai 先生
レイニー Rainy 先生
マリアム Mariam 先生
アキ Aki 先生
Testimonials
エントリーフォーム
レッスン内容
Ayumi教材ガイド
JLPTレベルガイド
あゆみ入門 レッスン内容
あゆみ初級1 レッスン内容
あゆみ初級2 レッスン内容
あゆみ初中級1 レッスン内容
Watashi Learning Method
Game Samples
Game lesson 1
Game lesson 16
Game lesson 2
Game lesson 3
Game lesson 5
Game lesson 6
Game lesson 7
温泉計画
Blog
日本語学習の目的
日本のテレビアニメの歴史
会員
ユーザーガイド
FAQ
お問合せ
Sign In
Sign Up
Choose Language
English
中文
日本語
他の通貨の参考価格
×
多通貨価格表
購買時の参考のための概算価格です。
クレジットカード決済時の費用とは異なります。
為替レートを取得中...
商品
USD
台湾ドル (TWD)
香港ドル (HKD)
日本円 (JPY)
24チケット
$370
-
-
-
12チケット
$220
-
-
-
8チケット
$160
-
-
-
為替レート更新日時:
'; } } function updateCurrencyPrices() { // 数値を3桁区切りでフォーマットする関数 function formatNumber(number) { return Math.round(number).toLocaleString('ja-JP'); } // 台湾ドルの価格更新 document.querySelectorAll('.twd-price').forEach(element => { const usdPrice = parseFloat(element.getAttribute('data-usd')); const twdPrice = usdPrice * exchangeRates.TWD; element.textContent = `NT$${formatNumber(twdPrice)}`; }); // 香港ドルの価格更新 document.querySelectorAll('.hkd-price').forEach(element => { const usdPrice = parseFloat(element.getAttribute('data-usd')); const hkdPrice = usdPrice * exchangeRates.HKD; element.textContent = `HK$${formatNumber(hkdPrice)}`; }); // 日本円の価格更新 document.querySelectorAll('.jpy-price').forEach(element => { const usdPrice = parseFloat(element.getAttribute('data-usd')); const jpyPrice = usdPrice * exchangeRates.JPY; element.textContent = `¥${formatNumber(jpyPrice)}`; }); } document.addEventListener("DOMContentLoaded", function () { document.querySelector('.close').onclick = function() { document.getElementById('multiCurrencyModal').style.display = 'none'; }; // モーダル外クリックで閉じる window.onclick = function(event) { const modal = document.getElementById('multiCurrencyModal'); if (event.target == modal) { modal.style.display = 'none'; } }; // Escキーでモーダルを閉じる document.addEventListener('keydown', function(event) { if (event.key === 'Escape') { document.getElementById('multiCurrencyModal').style.display = 'none'; } }); });