@charset "UTF-8";

/* CSS Document */

/*==================================================

results

=================================================*/

.results-top-menu {
	width: 90%;
	max-width: 1000px;
	margin: 80px auto 120px;
}
.results-top-menu ul {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;

	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.results-top-menu li {
	width: 31%;
	margin-top: 30px;
}
.results-top-menu a {
	display: block;
	color: #FFF;
	text-align: center;
	text-decoration: none;
	background-color: #333;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.6;
	padding: 3em 1em;
	-webkit-transition: background-color .3s;
	transition: background-color .3s;
}
.results-top-menu a:hover {
	background-color: #0d71d5;
}

.results-back {
	width: 90%;
	max-width: 1000px;
	margin: 80px auto 0;
}
.results-back a {
	width: 240px;
	display: block;
	color: #FFF;
	text-align: center;
	text-decoration: none;
	background-color: #333;
	border: 2px solid #333;
	margin: 0 auto;
	padding: 1em;
}
.results-back a:hover {
	color: #333;
	background-color: #FFF;
}

.results-jump-nav {
	width: 90%;
	max-width: 1200px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;

	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;

	margin: 60px auto 100px;
}
.results-jump-nav a {
	display: block;
	color: #FFF;
	text-align: center;
	text-decoration: none;
	background-color: #333;
	font-size: 1.4rem;
	margin: 0 10px 10px;
	padding: .8em 1.6em;
	-webkit-transition: background-color .3s;
	transition: background-color .3s;
}
.results-jump-nav a:hover {
	background-color: #0d71d5;
}

.results-table-wrap {
	width: 90%;
	max-width: 1200px;
	margin: 60px auto 0;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scroll-margin-top: 100px;
}
.results-table-wrap h2 {
	text-align: center;
	margin-bottom: 20px;
}
table.results-table {
	width: 100%;
	min-width: 900px;
	table-layout: fixed;
	border-collapse: collapse;
	background-color: #FFF;
	font-size: 1.4rem;
}
table.results-table th,
table.results-table td {
	box-sizing: border-box;
	border: 1px solid #ddd;
	text-align: left;
	vertical-align: middle;
	line-height: 1.6;
	height: 5.6em;
	min-height: 5.6em;
	padding: 10px 14px;
	word-wrap: break-word;
	overflow-wrap: break-word;
}
table.results-table thead th {
	color: #FFF;
	font-weight: normal;
	text-align: center;
	background-color: #333;
}
table.results-table th.pref {
	width: 7em;
}
table.results-table th.client {
	width: 18%;
}
table.results-table th.job {
	width: 34%;
}
table.results-table th.detail {
	width: 41%;
}
table.results-table tbody tr:nth-of-type(even) {
	background-color: #f2f2f2;
}

@media only screen and (max-width: 768px) {

	.results-top-menu {
		margin: 8% auto 12%;
	}
	.results-top-menu li {
		width: 100%;
	}
	.results-top-menu a {
		padding: 1.5em 1em;
	}

	.results-back {
		margin: 8% auto 0;
	}

	.results-jump-nav {
		margin: 8% auto 8%;
	}
	.results-jump-nav a {
		font-size: 1.2rem;
		margin: 0 6px 10px;
		padding: .7em 1em;
	}

	.results-table-wrap {
		width: 100%;
		margin: 10% auto 0;
		overflow-x: visible;
	}
	table.results-table {
		width: 100%;
		min-width: 0;
		table-layout: fixed;
		font-size: 1.1rem;
	}
	table.results-table th,
	table.results-table td {
		height: auto;
		min-height: 4.8em;
		padding: 6px 6px;
		word-break: break-all;
	}
	table.results-table th.pref {
		width: 11%;
	}
	table.results-table th.client {
		width: 22%;
	}
	table.results-table th.job {
		width: 33%;
	}
	table.results-table th.detail {
		width: 34%;
	}
}

@media only screen and (max-width: 480px) {

	table.results-table {
		font-size: 1rem;
	}
	table.results-table th,
	table.results-table td {
		padding: 5px 4px;
	}
	table.results-table th.pref {
		width: 10%;
	}
	table.results-table th.client {
		width: 21%;
	}
	table.results-table th.job {
		width: 34%;
	}
	table.results-table th.detail {
		width: 35%;
	}
}
