// 予約可能出発日の最小 const departureMin ="2026-02-24 11:00:00"; // 予約可能出発日の最大 const departureMax ="2026-05-25 19:00:00"; // 最大利用可能日数d+ const rentalDaysMax ="30"; // 通常の予約可能時間 const bizTimetable = ["10:00","10:30","11:00","11:30","12:00","12:30","13:00","13:30","14:00","14:30","15:00","15:30","16:00","16:30","17:00","17:30","18:00","18:30","19:00",]; // 休業日の一覧 const holidays = ["2025-11-03","2025-11-24","2025-12-31","2026-01-01","2026-01-02","2026-01-03","2026-01-04","2026-01-05","2026-02-23","2026-03-20","2026-04-29","2026-05-03","2026-05-04","2026-05-05","2026-05-06",]; // 非通常営業日・予約可能時間 const irrHours = [];