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

出勤情報

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

.calender {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
	font-weight: bold;
}
.calender .day {
	width:13.5%;
	border: 1px solid #707070;
	border-radius: 4px;
	text-align: center;
	line-height: 1.5;
	border-top:4px solid #a0915c;
	background: linear-gradient(0deg, #2c2c2c, #1b1b1b);
	box-sizing: border-box;
	
}
.calender .sat {
	width:13.5%;
	border: 1px solid #707070;
	border-radius: 4px;
	text-align: center;
	line-height: 1.5;
	border-top:4px solid #0185d4;
	background: linear-gradient(0deg, #2c2c2c, #1b1b1b);
	box-sizing: border-box;
}
.calender .sun {
	width:13.5%;
	border: 1px solid #707070;
	border-radius: 4px;
	text-align: center;
	line-height: 1.5;
	border-top:4px solid #e24756;
	background: linear-gradient(0deg, #2c2c2c, #1b1b1b);
	box-sizing: border-box;
}
.calender a {
	display: block;
	color: #fff;
		padding: 5px;
}
.todays {
	background: linear-gradient(0deg, #930808, #df4444) !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:20%;
	border-radius: 4px;
	text-align: center;
	line-height: 1.5;
	margin: 0 5px 10px 5px;
	
}
.calender .sat {
	width:20%;
	border-radius: 4px;
	text-align: center;
	line-height: 1.5;
margin: 0 5px 10px 5px;
}
.calender .sun {
	width:20%;
	border-radius: 4px;
	text-align: center;
	line-height: 1.5;
	margin: 0 5px 10px 5px;
}
.calender a {
	display: block;
	color: #fff;
	padding: 5px;
}
.todays {
	
}


}
