@charset "utf-8";
/* CSS Document */

.calendar_box{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.calendar_box .box {
	width: calc((100% - (18px * 2)) / 3);
	margin-bottom: 30px;
}
.calendar_box .box .title {
    background: #f1f1f1;
    padding: 5px 0;
	font-size: 19px;
}
.calendar_box .box table {
	width: 100%;
    table-layout: fixed;
}
.calendar_box .box table tr th {
	font-weight: 400;
}
.calendar_box .box table tr td {
    padding: 5px 0;
}
.calendar_box .box table tr .holiday {
    background: #a5a5a5;
    color: #ffffff;
}

@media screen and (max-width: 768px){
	.calendar_box .box {
		width: calc((100% - (10px * 1)) / 2);
	}
}
@media screen and (max-width: 480px){
	.calendar_box .box {
		width: calc((100% - (10px * 0)) / 1);
	}
}