@charset "utf-8";
/* CSS Document */

/*---------------------------------------------------------------------------
ここから下は役員評議会のテーブル
---------------------------------------------------------------------------*/
table {
	margin:0 auto 50px;
	padding: 0;
	border-collapse: collapse;
	border-bottom: #dddddd 1px solid;
	width: 1000px;
}

th {
	padding: 12px 20px;
	background-color: #F5f5f5;
	border: #dddddd 1px solid;
	vertical-align: middle;
	width: 20%;
}

td {
	padding: 12px 15px;
	border: #dddddd 1px solid;
	vertical-align: middle;
	width: 20%;
}

/*---------------------------------------------------------------------------
ここから下は画面幅800px以下の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width: 800px) {
	.table-mobile {
	  width: 100%;
	}
	.table-mobile th,
	.table-mobile td {
		width: auto;
		border-bottom: none;
		display: block;
		text-align: center;
	}
	.table-mobile td {
		text-align: left;
	}
}


/*---------------------------------------------------------------------------
ここから下は画面幅640px以下の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width: 640px) {
	.table-mobile {
	  width: 100%;
	}
	.table-mobile th,
	.table-mobile td {
		width: auto;
		border-bottom: none;
		display: block;
		text-align: center;
	}
	.table-mobile td {
		text-align: left;
	}
}


