/* CSS Document */
#member{
	padding-top: 0;
	}
	#member section{
		padding-bottom: 0;
		}
	#member .linkBut{
		width: 20em;
		}

#info{
	padding-top: 4em;
	}

#about{}
	#about th{
		text-align: center;
		}
	#about thead th:first-of-type{
		width: 5em;
		}


/* for all */
@media (max-width: 1199px) {
/*1199px以下*/
}
@media (max-width: 991px) {
/*991px以下*/
}


/* for mobile */
@media (max-width: 767px) {
/*767以下px*/
}
@media (max-width: 767px) and (orientation:portrait) {
/*767px以下 縦向き*/
#about{}
	#about thead th:first-of-type{
		width: 5em;
		}
	#about td{
		text-align: left;
		}
}
@media (max-width: 767px) and (orientation:landscape) {
/*767px以下 横向き*/
#about{}
	#about thead th:first-of-type{
		width: 8em;
		}
	#about td{
		text-align: center;
		}
}


/* for tablet */
@media (min-width: 768px) {
/*768px以上*/
#about{}
	#about thead th:first-of-type{
		width: 10em;
		}
	#about td{
		text-align: center;
		}
}
@media (min-width: 768px) and (max-width: 1199px) {
/*768px～1199px*/
}
@media (min-width: 768px) and (max-width: 991px) {
/*768px～991px*/
}


/* for PC */
@media (min-width: 992px) {
/*992px以上*/
}
@media (min-width: 992px) and (max-width: 1199px) {
/*992px～1199px*/
}
@media (min-width: 1200px) {
/*1200px以上*/
}


/* Edge */
@supports (-ms-ime-align:auto) {
}


/* ie */
@media all and (-ms-high-contrast: none) {
}


