@charset "utf-8";

/*全体*/
#NewCalendar #header {
	text-align: center;
	font-size: 24px;
	width: 100%;
	margin: 1rem 0 0;
	background-color: #808080;
}

/*カレンダー*/
#NewCalendar #calendar {
	text-align: center;
	width: 100%;
}
#NewCalendar table {
	border-collapse: collapse;
	width: 100%;
}
#NewCalendar th {
	color: #000;
}
#NewCalendar th, td {
	border: 1px solid #ddd;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
}
#NewCalendar td:first-child {
	color: red;
}
#NewCalendar td:last-child {
	color: blue;
}
#NewCalendar td.disabled {
	color: #ccc;
}
#NewCalendar td.today {
	background-color: #D65E72;
	color: #fff;
}

/*ボタン*/
#NewCalendar #next-prev-button {
	position: relative;
}
#NewCalendar #next-prev-button button{
	cursor: pointer;
	background-color: #808080;
	color: #fff;
	border: 1px solid #808080;
	border-radius: 4px;
	font-size: 1rem;
	padding: 0.5rem 2rem;
	margin: 1rem 0;
}
#NewCalendar #next-prev-button button:hover{
	/* background-color: #D4BB92; */
	/* border-color: #D4BB92;     */
	opacity: 0.65;
}
#NewCalendar #prev {
	float: left;
}
#NewCalendar #next {
	float: right;
}