.wgCalbox,
.cal-sizebar {
	width: 1230px;
	max-width: calc(100% - 20px);
	margin: 0 auto;
	margin-top:30px;
}

.cal_title {
	text-align: center;
	font-size: 20px;
	margin-bottom: 20px;
	font-weight: bold;
}
.cal_title .cal_btn {
	font-size: 32px;
	font-family: tahoma;
	font-weight: normal;
	cursor: pointer;
}


.cal_tbl {
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
}
.cal_tbl thead th {
	background-color: #ffffff;
    padding: 7px 0;
    text-align: center;
    border: 1px #c9c9c9 solid;
}
.cal_tbl tbody td {
	border: 1px #d7d7d7 solid;
	width: calc(100% / 7);
}
.cal_tbl .day-wrap {
	min-height: 100px;
	width: 100%;
}
.cal_tbl .cal-day {
	text-align: left;
	padding: 0 3px 0 0;
	font-size: 16px;
	font-weight: 900;
	background-color: #fbfbfb;
	padding: 0 0 0 5px;
}
@media screen and (max-width:580px) {
	.cal_tbl .cal-day {
		text-align: right;
		padding: 0 3px 0 0;
		font-size: 18px;
		font-weight: 700;}
}



.cal_tbl .cal-day.sat {color: #08f;}
.cal_tbl .cal-day.sun {color: #f40;}
.cal_tbl .cal-day.outmon {color: #ccc;}
.cal_tbl .cal-day.curmon {color: #7f7f7f;}

.cal_tbl .cal-item {
	padding: 2px 3px;
	border: 1px transparent solid;
	border-radius: 3px;
	margin: 0 3px;
}
.cal_tbl .cal-item:hover {
	border-color: #f80;
}
.cal_tbl .cal-item span {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	cursor: pointer;
	font-size: 13px;
}
/*
.cal_tbl .day-wrap.outmon .cal-item span {
	color: #ccc;
}
*/

.cal-cmd {
	margin-top: 5px;
	text-align: right;
}
.cal-cmd a {
	display: inline-block;
	padding: 6px 10px;
	background-color: #08f;
	color: #fff;
	border-radius: 3px;
}


.cal-view-overlay {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	opacity: .7;
	filter: alpha(opacity=70);
	z-index: 4000;
	display: none;
}

.cal-item-view {
	position: fixed;
	width: 500px;
	max-width: calc(100% - 30px);
	height: 400px;
	max-height: calc(100% - 70px);
	left: 100px;
	top: 100px;

	background-color: #fff;
	border: 1px #ccc solid;

	z-index: 4001;
	display: none;
	border-radius: 14px;
}
.cal-item-view .item-view-title {
	position: relative;
	padding: 7px 10px;
	text-align: left;
	background-color: #2196f3;
	color: #fff;
}
.cal-item-view .item-view-title .close {
	position: absolute;
	display: block;
	right: 0;
	top: 0;
	height: 100%;
	width: 40px;
	text-align: center;
	cursor: pointer;
}
.cal-item-view .item-view-title .close span {
	display: block;
	font-size: 24px;
	line-height: 100%;
	padding-top: 7px;
}
.cal-item-view .cal-item-detail {
	height: calc(100% - 38px);
	overflow-y: auto;
}
.cal-item-view .cal-item-title {
	font-weight: 600;
	padding: 5px 10px;
	border-bottom: 1px #d7d7d7 solid;
	background-color: #f1f1f1;
}
.cal-item-view .cal-item-period {
	padding: 5px 10px;
	border-bottom: 1px #d7d7d7 solid;
	background-color: #f1f1f1;
}
.cal-item-view .cal-item-content {
	padding: 15px 10px;
}