@charset 'utf-8';

.posts {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px 70px;
	margin-top: 50px;
}

.post img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.post p {
	font-size: 16px;
}

.mb50 {
	margin-bottom: 50px;
}

.block .mt-24 {
	margin-top: 50px;
}

.block .mt-50 {
	margin-top: 50px;
}

.block .text-right {
	text-align: right !important;
}

.table-01 th {
	width: 20%;
}

.color_red {color: #B90025 !important;}

.pdf-not {
	background-image: none;
}

/* SP版で使用 */
@media screen and (max-width: 767px) {
	.posts {
		gap: 20px;
	}
}