@charset "utf-8";


/*カレンダー共通
---------------------------------------------------------------------------*/
.cal1 caption,.cal2 caption,.cal3 caption {
	font-weight: bold;
	padding: 0.5rem;
	background: #555;
	margin-bottom: 0.5rem;
	color: #fff;
}
.cal1 caption a,.cal2 caption a,.cal3 caption a {
	color: inherit;
}

.cal1, .cal2, .cal3 {
	background: #fff;
	color: #333;
}
.cal1 a, .cal2 a, .cal3 a {
	color: inherit;
}

/*カレンダー用テーブル（cal1）12ヶ月用の小さなテーブル
---------------------------------------------------------------------------*/
.cal1 {
	table-layout: fixed;
	margin: 0 auto 2rem;
	text-align: center;
	line-height: 1;
}

.cal1, .cal1 td, .cal1 th {
	word-break: break-all;
	padding: 0.5rem;
}
.cal1 th {
	background: #ccc;
}

/*日曜日と祝日の日付の色*/
.cal1 th:nth-of-type(1) {
	background: #ff3838 !important;
	color: #fff !important;
}
.cal1 td:nth-of-type(1),
.cal1 span {
	color: #ff3838 !important;
}

/*カレンダー用テーブル（cal3）１週間用のテーブル
---------------------------------------------------------------------------*/
.cal3 {
	width: 100%;
	table-layout: fixed;
	margin: 0 auto 2em;
	text-align: center;
}
.cal3, .cal3 td, .cal3 th {
	word-break: break-all;
	border: 1px solid #666;
	padding: 0 1rem;
}
.cal3 th {
	background: #ccc;
	width: 10rem;
	height: 5rem;
}
.cal3 td {
	text-align: left;
}

/*日曜日と祝日の日付の色*/
.cal3 tr:nth-of-type(1) th {
	background: #ff3838 !important;
	color: #fff !important;
}
.cal3 tr:nth-of-type(1) td,
.cal3 span {
	color: #ff3838 !important;
}

/*カレンダー用テーブル（cal2）1ヶ月用のテーブル
---------------------------------------------------------------------------*/
.cal2 {
	width: 100%;
	table-layout: fixed;
	margin: 0 auto 2em;
	text-align: center;
}
.cal2, .cal2 td, .cal2 th {
	word-break: break-all;
	border: 1px solid #666;
	padding: 0 1rem;
}
.cal2 th {
	background: #ccc;
}

/*日曜日と祝日の日付の色*/
.cal2 th:nth-of-type(1) {
	background: #ff3838 !important;
	color: #fff !important;
}
.cal2 td:nth-of-type(1),
.cal2 span {
	color: #ff3838 !important;
}

.cal2 td {
	height: 12rem;
	vertical-align: top;
}
.cal2 td::first-line {
	font-size: 2rem;
}

/*移動ボタン
---------------------------------------------------------------------------*/
ul.cal.btn-cal {
	margin: 0;padding: 0;
	list-style: none;
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;
}
ul.cal.btn-cal li {
	padding: 0.5rem 3rem;
	margin: 0.2rem;
	border: 1px solid #999;
	transition: 0.3s;
}
ul.cal.btn-cal li:hover {
	cursor: pointer;
	border: 1px solid #000;
	color: #000;
}

/*インラインのfloatの影響をさける
---------------------------------------------------------------------------*/
#footer-contents, #footermenu, footer {clear: both;}

