schedule

first time to korea together

KOREA TRIP

ANA

Flight info

IMG 1868
IMG 1869
Seoul Korea

Hotel info

HOTEL THE BOTANIK SEWOON 
호텔 더 보타닉 세운 명동

☎️ +82 2692 61500

HOTEL THE BOTANIK SEWOON

23-1 Eulji-ro 19-gil, Jung District, Seoul

▲ TOP
first time to korea together

Schedule

12月15日

5時30分
中落合出発

6時00分
笹寺出発

パスポート忘れないように!

6時45分
羽田空港第2ターミナル到着 check in

8時45分
NH861便 出発
11時20分
金浦国際空港到着

13時00分
원조마포소금구이 강남점 (ウォンジョマッポソグング カンナム店)
14時30分
가로수길(カロスキル散策)

XEXYMIX カロスキル店 
https://maps.app.goo.gl/ZiaVvaT2SA17uvF68

alo Yoga アックジョン本店
https://maps.app.goo.gl/KpC71VJkFHW4eGT9A?g_st=ipc

17時00分
ホテルチェックイン

document.addEventListener("DOMContentLoaded", function () { const zipInput = document.querySelector(".js-zipcode"); const prefInput = document.querySelector(".js-pref"); const cityInput = document.querySelector(".js-city"); const addrInput = document.querySelector(".js-address"); if (!zipInput) { console.log("❌ 郵便番号フィールドが見つかりません"); return; } zipInput.addEventListener("blur", function () { let zipcode = zipInput.value.replace(/[^0-9]/g, ""); if (zipcode.length !== 7) { console.log("❌ 7桁の郵便番号ではありません"); return; } console.log("📮 郵便番号検索開始: " + zipcode); fetch(`https://zipcloud.ibsnet.co.jp/api/search?zipcode=${zipcode}`) .then(res => res.json()) .then(data => { console.log("📡 取得データ: ", data); if (data.results) { let result = data.results[0]; prefInput.value = result.address1; // 都道府県 cityInput.value = result.address2 + result.address3; // 市区町村 // 建物名・番地は手入力 } else { console.log("⚠️ 該当住所なし"); } }) .catch(err => console.error("エラー:", err)); }); });