/**********************************************
	営業カレンダー
**********************************************/
#calendarBlock {
	padding:5vh 0;
}

#calendarBlockInner {
	margin:0 auto;
	padding:40px 4vw;
	max-width:calc(1280px - 8vw);
}

#calendarTitle {
	margin-bottom:40px;
	padding-left:10px;
	font-family:"Sawarabi Mincho";
	font-size:165%;
	color:#2e2e2e;
	border-left:10px solid #2e2e2e;
}

/**********************************************
	カレンダー説明
**********************************************/
.pageDetailText {
	line-height:200%;
	text-align:center;
	font-size:105%;
}

.holidayText {
	text-align:right;
	font-size:1.2em;
}

.holidayBox {
	font-size:32px;
	color:#d2370c;
}

/**********************************************
	カレンダーテーブル
**********************************************/
#calendar {
	margin-bottom:15px;
}

.calendarBox {
	display:inline-block;
	margin:5px;
	background-color:#fff;
	border:1px solid #ccc;
}

.calendarMonth {
	margin:10px 0; 
	text-align:center;
	font-size:110%;
}

.calendarTable {
	border-collapse:separate;
	border:1px solid #fff;
	border-spacing:2px;
}

.calendarTable th {
	padding:2px 0;
	text-align:center;
	font-size:80%;
	color:#888;
}

.calendarTable td {
	width:26px;
	height:26px;
	font-size:15px;
}

.calendarTable td p {
	position:relative;
	overflow:hidden;
	width:26px;
	height:26px;
}

.calendarTable td span {
	position:absolute;
	top:0;
	left:0;
	width:26px;
	line-height:26px;
	text-align:center;
}

.calendarTable td.normalday {
	color:#222;
}

.calendarTable td.holiday {
	color:#e74c3c;
}

.calendarTable td.saturday {
	color:#2980b9;
}

.calendarTable td.businessHoliday {
	color:#fff;
}

@media screen and (max-width:768px) {
	#calendar {
		text-align:center;
	}

	.calendarMonth {
		font-size:110%;
	}

	.calendarTable th {
		height:19px;
	}

	.calendarTable td {
		width:19px;
		height:19px;
		font-size:12px;
	}

	.calendarTable td p {
		position:relative;
		overflow:hidden;
		width:19px;
		height:19px;
	}

	.calendarTable td span {
		position:absolute;
		top:0;
		left:0;
		width:19px;
		line-height:19px;
		text-align:center;
	}
}
