@charset "UTF-8";
/*-----------------------------------
	group_block
-----------------------------------*/
#group_block {
	padding-bottom: 120px;
}
#group_block table {
	width: min(860px,100%);
	margin: 0 auto;
	border-radius: 10px;
	overflow: hidden;
	letter-spacing: 0.05em;
}
#group_block table tr:not(:last-child) {
	border-bottom: 1px solid #DBDBDB;
}
#group_block table th {
	width: 180px;
	background: #393534;
	font-weight: 600;
	color: var(--tClr3);
	text-align: left;
	padding: 30px;
	vertical-align: middle;
}
#group_block table td {
	padding: 30px;
	background: var(--bgClr1);
	line-height: 1.5;
}
@media screen and (max-width: 640px) {
	#group_block {
		padding-bottom: 60px;
	}
	#group_block table tr {
		display: block;
		border-radius: 10px;
		overflow: hidden;
	}
	#group_block table tr:not(:last-child) {
		border-bottom: none;
		margin-bottom: 20px;
	}
	#group_block table th {
		/* width: 120px; */
		width: 100%;
		display: block;
		padding: 15px;
	}
	#group_block table td {
		width: 100%;
		display: block;
		padding: 15px;
	}
}