@charset "utf-8";

.table_wrapper {
	margin: 40px auto 0;
}

#member_table {
	width: 100%;
}

#member_table th {
	padding: 1em;
	background-color: rgba(0,163,182,1);
	color: #ffffff;
	font-weight: normal;
	text-align: center;
	border-left: solid 1px #ffffff;
}

#member_table th:first-child {
	border-left: none;
}

#member_table tbody {
	border-left: solid 1px #cccccc;
}

#member_table td {
	padding: 1em;
	background-color: #ffffff;
	border-right: solid 1px #cccccc;
	border-bottom: solid 1px #cccccc;
}

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

.table_wrapper {
	max-width: 100%;
	margin: 20px auto 0;
	overflow-x: auto;
}

#member_table {
	width: auto;
}

#member_table th {
	padding: 0.5em;
	white-space: nowrap;
}

#member_table td {
	padding: 0.5em;
	white-space: nowrap;
}
}