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

#sec01 {
	padding: 6% 0;
	text-align: center;
	max-width: 1000px;
}
#sec01 .tableBox {
	display: block;
	width: 100%;
	

}
#sec01 h3 {
    text-align: center;
    font-size: 18px;

    padding: 1em 0 2em;

}
#sec01 table {
width: 100%;
	border: #eee solid 1px;
	
}
#sec01 th, #sec01 td {
	padding: 1em 1em;
	text-align: center;
	font-size: 13px;
	white-space: nowrap;
}
#sec01 tr:nth-child(2n) th, #sec01 tr:nth-child(2n) td {
	background-color: #eee;
}
#sec01 th {}
#sec01 td {}
#sec01 .cat th {
	background-color: rgb(178 114 115);
	color: #fff;
	text-align: center;
	font-weight: 400;
	text-align: center;
	font-size: 90%;
	padding: 0.5em;
font-size: 12px;
}

@media screen and (max-width: 959px) {
	#sec01 .tableBox {
		max-height: 400px;
  	overflow-y: auto;
	}
	#sec01 .cat th {
		position: -webkit-sticky;
		position: sticky;
		top: 0;
		z-index: 1;
		border-bottom: 2px solid #ddd;
	}
	
	
}
@media screen and (max-width: 599px) {
	#sec01 h4 {
		font-size: clamp(14px, 4vw, 16px);
	}
	#sec01 .tableBox {
		max-height: 100%;
	}
}