

/* Biz Calendar 基本スタイル */
#biz_calendar {
  width: 100%;
  max-width: 300px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: "Noto Sans JP", sans-serif, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  background: #fff;
  margin: 1em auto;
}
/* ヘッダー部分（月表示） */
#biz_calendar .month {
  text-align: center;
  background: #f5f5f5;
  padding: 8px;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
}

/* 曜日ヘッダー */
#biz_calendar .weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: #fafafa;
  border-bottom: 1px solid #ddd;
}
#biz_calendar .weekdays div {
  text-align: center;
  padding: 6px;
  font-weight: 600;
  color: #555;
}

/* 日付セル */
#biz_calendar .days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
#biz_calendar .days div {
  text-align: center;
  padding: 10px 0;
  border: 1px solid #eee;
  min-height: 40px;
}

/* 今日の日付を強調 */
#biz_calendar .days .today {
  background: #e6f7ff;
  border: 1px solid #3399ff;
  font-weight: bold;
  color: #0066cc;
}

/* 休業日（例: .closed クラスを付与） */
#biz_calendar .days .closed {
  background: #f9f9f9;
  color: #aaa;
}

/* 営業日（例: .open クラスを付与） */
#biz_calendar .days .open {
  background: #fdfdfd;
  color: #333;
}
