﻿@charset "utf-8";


/*----------------------------------------------
	Overall settings
-----------------------------------------------*/

.cal_box{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	text-align: center;
	/*padding: 40px 3%;*/
}
.cal_box div{
	width: 50%;
	padding: 0 15px 0px;
}
.cal_box table{
	width: 100%;
	font-size: 18px;
	font-weight: bold;
	border: none;
}
.cal_box table th{
	border: none;
	font-size: 18px;
	border-bottom: 1px solid #51392a;
}
.cal_box table th:nth-child(1),
.cal_box table td:nth-child(1){
	color: #ea4343;
}
.cal_box table th:nth-child(7),
.cal_box table td:nth-child(7){
	color: #435bea;
}
.cal_box table th:nth-child(7).red,
.cal_box table td:nth-child(7).red{
	color: #ea4343;
}
.cal_box table tr:first-child th{
	color: #51392a;
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 10px;
	border-bottom: none;
}
.cal_box table td{
	color: #51392a;
	font-size: 18px;
	line-height: 1.2;
	border: none;
	border-bottom: 1px solid #51392a;
	vertical-align: top;
	padding: 5px 0;
}
.cal_box table td.red{
	color: #ea4343;
}
.cal_box table p{
	font-size: 10px;
	margin: 0;
	color: #51392a;
}

/*------------------------------ responsive ------------------------------*/
@media screen and (max-width: 768px) {
	.cal_box{
		display: block;
		padding: 20px 0;
		margin-bottom: 20px;
	}
	.cal_box div{
		width: 100%;
		padding: 0 0 20px;
	}
	.cal_box table tr:first-child th{ padding-bottom: 0;}
}





