@charset "UTF-8";
.cal_info {
	display: flex;
	align-items: center;
}
.cal_info::before {
	content: '';
	width: 1em;
	height: 1em;
	margin: 0 5px 0 0;
	border: 1px solid #bbb;
	background: #FEE;
}
div.cal_wrapper table.cal {
	margin: 0 0 5px;
}
div.cal_wrapper table.cal tr th {
	padding: 10px;
	border: solid 1px #CCC;
}
div.cal_wrapper table.cal tr th p {
	float: left;
	font-weight: bold;
}
div.cal_wrapper table.cal tr th div.cal_ui {
	float: right;
}
div.cal_wrapper table.cal tr th div.cal_ui input {
	border: solid 1px #CCC;
	background-color: #FFF;
	font-size: 12px;
	margin: 0px 2px;
	padding: 1px 5px;
	border-radius: 3px;
	cursor: pointer;
}
div.cal_wrapper table.cal tr td {
	border: 1px solid #bbb;
	text-align: center;
	padding: 0;
	color: #1b1b1b;
}
div.cal_wrapper table.cal tr.headline td {
	padding: 5px 0px;
	font-size: 12px;
}

div.cal_wrapper table.cal tr.headline td.Sun {
	color: #F00;
}
div.cal_wrapper table.cal tr.headline td.Sat {
	color: #00F;
}
div.cal_wrapper table.cal tr.headline {
	background-color: #EEE;
}
div.cal_wrapper table.cal tr td div {
	position: relative;
	padding: 5px 15px;
	font-size: 14px;
	text-align: center;
	background-color: #FFF;
	border-radius: 3px;
}
div.cal_wrapper table.cal tr td div span {
	display: none;
	position: absolute;
	top: 20px;
	left: 0px;
	width: 180px;
	border: solid 1px #EEE;
	background-color: #FFF;
	text-align: left;
	padding: 5px;
	z-index: 10;
	color: #000;
	font-weight: normal;
	line-height: 1.5em;
	box-shadow: 1px 1px 3px #666;
}

/* �ȉ��A�N���X�w�肷��Ƃ��̃A�� */

div.cal_wrapper table.cal tr td div.Sat {
	color: #00F;
}
div.cal_wrapper table.cal tr td div.Sun {
	color: #F00;
}
div.cal_wrapper table.cal tr td div.Today {
	font-weight: bolder;
}
div.cal_wrapper table.cal tr td div.Deli {
	background-color: #EFE;
}
div.cal_wrapper table.cal tr td div.Holyday {
	font-weight: bolder;
	color: #F00;
	background-color: #FEE;
}
div.cal_wrapper table.cal tr td div.Birthday {
	font-weight: bolder;
	background-color: #EEF;
	color: #090;
	border-radius: 3px;
}

div.cal_wrapper table.cal tr td div.backward {
	color: #CCC;
	font-weight: normal;
	background-color: #FFF;
	border-radius: 3px;
}
div.cal_wrapper table.cal tr td div.pointer {
	cursor: pointer;
}
div.cal_wrapper table.cal tr td div.pointer:hover {
	background-color: #EEE;
}


@media (min-width: 768px) {
	div.cal_wrapper table.cal tr.headline td {
		font-size: 14px;
	}
	div.cal_wrapper table.cal tr td div {
		font-size: 16px;
	}
}