/* ----------------------------------------

出勤情報

---------------------------------------- */

.calender {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
	font-weight: bold;
}
.calender .day {
	width:13.5%;
	text-align: center;
	line-height: 1.2;
	background:#222;
	clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 99%, 0 100%, 0% 50%);
	box-sizing: border-box;
	font-size: 2rem;
}

.calender span {
	font-size: 1.5rem;
}


.calender a {
	display: block;
	color: #fff;
		padding: 5px;
}
.todays {
	background:#99023b !important;
}

@media screen and (max-width: 1200px) {
	
.calender {
	display: flex;
	justify-content: center;
	margin-bottom: 10px;
	flex-wrap: wrap;
	font-size: 1.3rem;
}
.calender .day {
	width:21%;
	text-align: center;
	line-height: 1.2;
	margin: 0 5px 10px 5px;
	font-size: 1.5rem;
}
.calender span {
	font-size: 1.2rem;
}



}
