
/* Biz Calendar 基本スタイル */
.entry-content .bizcalendar .days div {
  color: #333 !important;
}
#biz_calendar p span.boxholiday {
    background-color: #F2E4E4 !important;
    padding-left: 25px;
    margin-right: 10px;
}
/* カレンダー全体を左に寄せる */
.biz-cal {
    margin-left: 0 !important;
    margin-right: auto !important;
    text-align: left !important;
}

/* カレンダー内のテーブルも左に寄せる */
.biz-cal table {
    margin-left: 0 !important;
    margin-right: auto !important;
}

#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;
   margin-left: 0 !important;
 }
/* ヘッダー部分（月表示） */
#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;*/
	background: #c79a6b !important;
  color: #aaa;
}
#biz_calendar table.bizcal .holiday,
#biz_calendar p span.boxholiday 
{
/*	background: #c79a6b !important;*/
	background: rgba(199,154,107,0.2);
	color: #c79a6b;
}
/* 営業日（例: .open クラスを付与） */
#biz_calendar .days .open {
  background: #fdfdfd;
  color: #333;
}
