@charset "UTF-8";

/* ボタン風チェックボックス */
.like_btn label {
    cursor: pointer;
    padding: 5px;
    background: lightgray;
    border: 1px solid #aaa;
    border-radius: 3px;
}
.like_btn input, .like_btn input {
    display: none;
}
.like_btn input:checked + label {
    color: white;
    background: blue;
}
.like_btn input:disabled + label {
    color: white;
    background: lightgray;
}


ul.date-box {
	text-align: center;
}
ul.date-box li {
	float: left;
	margin-right: 1px;
}
ul.date-box li:last-child {
	margin-right: 0;
}
ul.date-box li a {
	display: block;
	text-decoration: none;
	box-sizing: border-box;
	width: 30px;
	padding: 2 0;
	background-color: #000;
	color: #fff;
}

ul.time-box {
	text-align: center;
	box-sizing: border-box;
}
ul.time-box li {
	float: left;
	box-sizing: border-box;
	width: 16.6%;
	border-right: 1px solid #ccc;
}
ul.time-box li:last-child {
	border-right: none;
}
ul.time-box li a {
	display: block;
	text-decoration: none;
	box-sizing: border-box;
	width: 100%;
	padding: 2 0;
	background-color: #000;
	color: #fff;
}


