.post__pagination {
	margin-bottom: 50px;
	overflow: hidden;
}

.post__pagination__left,
.post__pagination__right {
	width: 330px;
}

.post__pagination__left {
	float: left;
}

.post__pagination__right {
	float: right;
}

.post__pagination__left>a,
.post__pagination__right>a {
	display: block;
	position: relative;
}

.post__pagination__left__img,
.post__pagination__right__img {
	display: block;
	background: #000;
}

.post__pagination__left__img>img,
.post__pagination__right__img>img {
	width: 100%;
	height: 100px;
	object-fit: cover;
	opacity: 0.3;
}

.post__pagination__left__text,
.post__pagination__right__text {
	position: absolute;
	top: 44px;
	z-index: 999;
	color: #fff;
	font-size: 14px;
}

.post__pagination__left__text {
	left: 50px;
}

.post__pagination__right__text {
	right: 50px;
}


.workinfo_title {
	padding-left: 20px;
}

/* 外枠のスタイル */
.workinfo_box {
	max-width: 700px;
	margin: 20px auto;
	padding: 20px;
	border-radius: 12px;
	overflow: hidden;
}

/* 現場名のエリア */
.workinfo_box01 {
	padding: 15px;
	position: relative;
}

.workinfo_box01 h3 {
	font-size: 24px;
	margin: 0;
}

.type-box {
	display: inline-block;
	margin-top: 8px;
	padding: 5px 15px;
	border-radius: 20px;
}

.type-box span {
	font-size: 14px;
}

/* 規模と工事内容のエリア */
.workinfo_box02 {
	display: flex;
	justify-content: space-between;
	padding: 15px;

}

.workinfo_item {
	flex: 1;
	padding: 0 20px;

}

.workinfo_item h3 {
	padding-bottom: 10px;
	margin-top: 0;
}

.workinfo_item p {
	margin: 10px 0;
	padding-bottom: 5px;
	border-bottom: 2px dotted #e4e4e4;
	/* ここをdottedに変更 */
}

.container {
	margin-inline: auto;
	max-width: 700px;
	position: relative;
}

.swiper {
	max-width: 600px;
}

.swiper-slide img {
	width: 600px;
	height: 450px;
	object-fit: cover;
	/* 画像が要素のサイズに合うように調整 */
	display: block;


	transition: transform 0.3s ease;
	display: block;
	/* 画像の周りの余白を削除 */
	border-radius: 10px;
	/* 画像の丸み（コンテナと同じ値にする） */
}



/* 前への矢印 */
.swiper-button-prev {
	left: -30px;
}

/* 次への矢印 */
.swiper-button-next {
	right: -30px;
}


.swiper-pagination {
	position: absolute;
	bottom: -30px !important;
	/* ボタンの位置をスライダーの下に20ピクセル下げる */
	width: 100%;
	text-align: center;
}

.swiper-pagination-bullet {
	margin: 0 5px;
	/* ボタン間の余白を調整 */
}



/* レスポンシブ対応（画面幅が480px以下の場合） */
@media screen and (max-width: 480px) {

	/* 規模と工事内容のエリア */
	.workinfo_box02 {
		display: block;

	}

	.workinfo_item h3 {
		padding-top: 10px;
	}

	.swiper-slide {
		position: relative;
		overflow: hidden;
		padding-top: 75%;
		/* 4:3のアスペクト比 */
	}

	.swiper-slide img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		object-fit: cover;
	}


}