﻿

/*** for PC Browser ***/
@media (min-width:401px)
{

}
@media only screen and (max-width:800px){
	#table{
		display: block;
	}
		#table thead{
			display: none;
		}
		#table tbody{
			display: block;
		}
			#table tbody tr{
				display: block;
				margin-bottom: 1.5em;
			}
			#table tbody th,
			#table tbody td{
				display: list-item;
				border: none;
			}
			#table tbody th{
				margin-bottom: 5px;
				list-style-type: none;
				color: #fff;
				background: #000;
			}
			#table tbody td{
				margin-left: 20px;
				padding: 0;
			}
#table tbody td:nth-of-type(1):before { content: "[]"; }
#table tbody td:nth-of-type(2):before { content: "[]"; }

}