@charset "utf-8";
/* CSS Document */

table {
	margin: 2em 0;
}

table caption {
	text-align: left;
    font-weight: bold;
	padding-left: 1em;
	margin-bottom: 0.5em;
    position: relative;
}

table caption::before {
    content: "";
    display: block;
    width: 0.8em;
    height: 0.8em;
    background: #000;
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 0;
}

thead th {
    border: 1px solid #ccc;
    padding: 1em;
	text-align: center;
    vertical-align: middle;
    background: #eee;
}

tbody td {
    border: 1px solid #ccc;
    padding: 1em;
}

.s5-container__inner ul {
	padding-left: 1.5em;
}

@media screen and (max-width: 640px){
	thead th {
		padding: 0.3em 0;
	}
	
	tbody td {
		padding: 0.3em;
	}
}