@charset "utf-8";
/* -----------------------------
 company.css
----------------------------- */

.content table {
	border-collapse: collapse;
}

.content th {
	padding: 5px;
	background-color: var(--color-impact);
	text-align: left;
	font-weight: normal;
	color: var(--text-color);
	white-space: nowrap;
}

.content td {
	padding: 5px;
}

.content p {
	margin: 0px;
	margin-bottom: 15px;
	padding: 0px;
}


/* -----------------------------
 PC
----------------------------- */
@media screen and (min-width:1000px) {
	.content table {
		width: 100%;
		border: 1px solid #CCCCCC;
	}

	.content table th {
		padding-right: 100px;
		border: 1px solid #CCCCCC;
	}

	.content table td {
		border: 1px solid #CCCCCC;
		background-color: var(--color-x-pale);
	}
}

/* -----------------------------
 SP
----------------------------- */
@media screen and (max-width:999px) {
	article .content {
		padding-left: 0px;
		padding-right: 0px;
	}

	.content table {
		width: 100%;
	}

	.content th {
		display: block;
	}

	.content td {
		display: block;
		margin-bottom: 5px;
	}
}
