// 予約可能出発日の最小 const departureMin ="2025-09-21 11:30:00"; // 予約可能出発日の最大 const departureMax ="2025-12-20 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-07-21","2025-08-10","2025-08-11","2025-08-12","2025-08-13","2025-08-14","2025-08-15","2025-08-16","2025-08-17","2025-09-15","2025-09-23","2025-10-13","2025-11-03","2025-11-24","2025-12-31","2026-01-01","2026-01-02","2026-01-03","2026-01-04","2026-01-05",]; // 非通常営業日・予約可能時間 const irrHours = [];