// 予約可能出発日の最小 const departureMin ="2025-07-31 11:30:00"; // 予約可能出発日の最大 const departureMax ="2025-10-28 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-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","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",]; // 非通常営業日・予約可能時間 const irrHours = [];