/** 日付を元にTimePointを生成します。 */
 public static TimePoint of(LocalDate day) {
   return of(day, day.atStartOfDay());
 }