/**
 *	Common
 */
.hide {
	display: none;
}


/**
 *	Reservation Form
 */
/*
#form_fields input::-webkit-input-placeholder {
    color: #333;
    font-weight: normal;
}
#form_fields input:-ms-input-placeholder {
    color: #333;
    font-weight: normal;
}
#form_fields input::-moz-placeholder {
    color: #333;
    font-weight: normal;
}

#form_fields .error {
	font-size: x-small;
	color: #f00;
}
*/
#form_fields table {
	border-collapse: collapse;
}
#form_fields table th,
#form_fields table td {
	line-height: 1.3em;
}
#form_fields table th {
	vertical-align: top;
}

#form_fields table td input,
#form_fields table td select,
#form_fields table td textarea {
	margin-bottom: 8px;
}
#form_fields table td input:disabled+label {
    color: #ccc;
    cursor: not-allowed; /* 禁止カーソル */
}
#form_fields input[type="submit"]:disabled {
    color: #ccc;
    cursor: not-allowed; /* 禁止カーソル */
}

/**
 *	Car Group Selection
 */
ul.cargrouplist {
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.cargrouplist li {
	margin: 0;
	float: left;
	width: 25%;
}
ul.cargrouplist li img {
	width: 80px;
	height: 80px;
}
ul.cargrouplist:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}

/**
 *	Car Schedule
 */
table.carschedule {
	margin: auto;
	margin-bottom: 30px;
	width: 200px;
	border-collapse: collapse;
	border: 1px solid #ccc;
}
table.carschedule th,
table.carschedule td {
	border: 1px solid #ccc;
}

/**
 *	Car Option Selection
 */
/*
ul.optionlist {
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.optionlist li {
	margin: 0;
	float: left;
	width: 33%;
}
*/

/**
 *	Car Option Selection
 */
/*
ul.freeoptionlist {
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.freeoptionlist li {
	margin: 0;
	float: left;
	width: 50%;
}

input[name="end_submit"]:disabled {
	color: #ccc;
}
*/

/**
 *	Progress Table
 */
ul.reservations-step {
	width: 100%;
	margin: 0 0 15px;
	padding: 0;
	display: table;
	list-style: none;
	border-left: 1px solid #333;
}
ul.reservations-step li {
	display: table-cell;
	width: 20%;
	height: 40px;
	margin: 0;
	padding: 0;
	vertical-align: middle;
	text-align: center;
	line-height: 1.2em;
	font-size: 85%;
	color: #999;
	border: 1px solid #333;
	border-width: 1px 1px 1px 0;
}
ul.reservations-step li.now-on {
	color: #fff;
	background-color: #333;
}


/*
 *	Page navi for history
 */

.list_pagenavi {
	display: block;
	height: 1em;
}
.list_pagenavi .prev_page {
	float: left;
	width: 20%;
}
.list_pagenavi .next_page {
	float: right;
	width: 20%;
	text-align: right;
}
.list_pagenavi .list_datenavi {
	float: left;
	width: 60%;
	text-align: center;
}
.list_pagenavi .list_datenavi a {
	margin: auto 10px;
}

/**
 *	履歴
 */
table.history_list {
	width: 100%;
	border-collapse: collapse;
}
table.history_list th,
table.history_list td {
	padding: 3px 10px !important;
	border: 1px solid #ddd;
}
table.history_list th {
	background-color: #f6f6f6;
}

/**
 * エラーメッセージ
 */
.error_message {
	padding: 15px;
	border: 3px solid #f00;
}
