@charset "utf-8";

.ta-center {
	text-align: center;
}

.txt_box.ta-center p {
	margin: auto;
}

.txt-1 {
	font-weight: 300;
	font-size: 17px;
	line-height: 1.76em;
	letter-spacing: -0.025em;
	color: #000;
}

.img_list.type01 {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.img_list.type01 li {
	width: calc(33.3333% - 20px);
}

.img_list.type01 li .img_box {
	aspect-ratio: 1/0.58;
	background-color: #b3b3b3;
}

.img_list.type01 li .img_box img {
	width: 100%;
	height: 100%;
	/* object-fit: cover;
	object-position: center center; */
}

.img_list.type01 li .txt_box p {
	font-size: 15px;
	line-height: 1.7em;
	color: #6a6a6a;
	margin-top: 20px;
	padding-left: 1em;
	box-sizing: border-box;
	position: relative;
}

.img_list.type01 li .txt_box p::before {
	content: '';
	display: block;
	width: 4px;
	height: 4px;
	background-color: #b1281e;
	position: absolute;
	top: 0.85em;
	left: 0;
}

@media all and (max-width: 767px) {
	.img_list.type01 {
		justify-content: center;
	}

	.img_list.type01 li {
		width: 100%;
		max-width: 345px;
	}
}