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