@charset 'utf-8';

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

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

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

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

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

.mb50 {
	margin-bottom: 50px;
}

.mb80 {
	margin-bottom: 80px;
}

.back-home {
	margin-top: 80px;
	margin-bottom: 100px;
	text-align: center;
}

.back-home a {
	display: block;
	width: fit-content;
	height: 18px;
	margin: 0 auto;
	font-size: 1.6rem;
	color: #333;
	padding: 0 25px;
	border-right: 1px solid #333;
	border-left: 1px solid #333;
	line-height: 1;
}

.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;
}

/* テーブル関連 */
.table-01 {
	margin-top: 40px;
}

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

.table-02 th {
	width: 12%;
}

.table-02 th:last-child {
	width: calc(100px + 16px * 2);
	padding: 0 16px;
}

.table-02 .program a {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	color: black;
	width: 100px;
	height: 70px;
	border-radius: 10px;
}

.link-right {
	display: flex;
	justify-content: flex-end;
}

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