@charset "utf-8";
/* ============================================================
   例会・年間予定 スケジュール表 専用スタイル
   common.css とは独立して管理するファイル
   テーブルに付与するクラス: .rc-schedule
   ============================================================ */

table.rc-schedule {
	width: 680px;
	table-layout: fixed;
	margin: 15px auto;
	border-collapse: collapse;
	background-color: #ffffff;
	font-size: 80%;
	line-height: 1.4;
	color: #000000;
}
/* 列幅（table-layout:fixed と colgroup で確定） */
table.rc-schedule col.col-month { width: 53px; }
table.rc-schedule col.col-day { width: 56px; }
table.rc-schedule col.col-count { width: 52px; }
table.rc-schedule col.col-theme { width: 81px; }
table.rc-schedule col.col-event { width: 170px; }
table.rc-schedule col.col-club { width: 116px; }
table.rc-schedule col.col-district { width: 152px; }

/* 表タイトル */
table.rc-schedule caption {
	font-size: 125%;
	font-weight: bold;
	padding: 8px 0 10px 0;
	color: #000000;
	letter-spacing: 0.05em;
}

/* 全セル共通の枠線 */
table.rc-schedule th,
table.rc-schedule td {
	border: 1px solid #a5b5c6;
	padding: 4px 6px;
	vertical-align: middle;
}
/* 本文の各行は最低45px（内容が多ければそれ以上に広がる） */
table.rc-schedule tbody tr {
	height: 45px;
}

/* 見出し行（月・日・回数…） */
table.rc-schedule thead th {
	background-color: #c9d0d3;
	color: #000000;
	font-weight: bold;
	text-align: center;
	white-space: nowrap;
	padding: 6px 4px;
}

/* 月セル（縦結合） */
table.rc-schedule th.month {
	background-color: #e3e8ec;
	font-weight: bold;
	text-align: center;
	white-space: nowrap;
	width: 53px;
}

/* 日 */
table.rc-schedule td.day {
	text-align: center;
	white-space: nowrap;
	width: 56px;
}

/* 回数 */
table.rc-schedule td.count {
	text-align: center;
	color: #555555;
	white-space: nowrap;
	width: 52px;
}
/* ①回数が空のセルのみ背景色 */
table.rc-schedule td.count--empty {
	background-color: #f3f6f8;
}

/* 月間（ロータリーの強調月間／縦結合） */
table.rc-schedule td.theme {
	background-color: #ffffff;
	text-align: center;
	font-weight: bold;
	color: #000000;
	width: 81px;
}

/* 例会行事 */
table.rc-schedule td.event {
	width: 170px;
}

/* クラブ行事 */
table.rc-schedule td.club {
	width: 116px;
}

/* 地区行事 */
table.rc-schedule td.district {
	width: 152px;
}

/* 空セルでも高さを保つ */
table.rc-schedule td:empty::after {
	content: "\00a0";
}

/* 集計・バージョン行 */
table.rc-schedule tfoot td {
	background-color: #c9d0d3;
}
table.rc-schedule tfoot td.total {
	font-weight: bold;
	text-align: center;
}
table.rc-schedule tfoot td.version {
	text-align: right;
	font-size: 92%;
	color: #555555;
	white-space: nowrap;
}
