.cat-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 20px;
}
.cat-item {
	width: calc((100% - 20px * 3) / 4);
}
.cat-item a {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.5em;
	border: 1px solid var(--color-primary);
	border-radius: 5px;
	font-size: 1.8rem;
	font-weight: 500;
	text-align: center;
	color: var(--color-primary);
	transition: 0.3s ease-in-out;
}
.list .cont-ttl {
	text-align: center;
	font-size: 3.6rem;
	padding: 0.15em 1em;
}
.list-warp {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 50px;
}
.list-item {
	width: calc((100% - 30px) / 2);
	border: 1px solid var(--color-primary);
	border-radius: 10px;
}
.list-image {
	width: 60%;
	margin: 20px auto;
}
.list-txt {
	padding: 0 20px;
	text-decoration: underline;
}
.list-btn {
	background: var(--color-accent);
	color: #fff;
	font-size: 1.8rem;
	font-weight: 700;
	width: 257px;
	height: 50px;
	margin: 20px auto;
	line-height: 50px;
	text-align: center;
	border-radius: 5px;
}
.list-read {
	color: var(--color-red);
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
	margin: 10px auto 20px;
}
/* 買取方法*/
.sub-ttl {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 0.5em;
}
.sub-ttl span {
	color: var(--color-primary);
	display: inline-block;
	margin-right: 0.3em;
}
.howto-wrap {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}
.howto-flow {
	flex: 5.3;
}
.howto-faq {
	flex: 4.7;
}
.howto-faq .dot-list li::before {
	background: var(--color-primary);
}
.howto-faq .dot-list li a {
	text-decoration: underline;
	color: var(--color-primary);
}

@media (min-width: 769px) {
	.cat-item a:hover {
		background: var(--color-primary);
		color: #fff;
	}
}
@media (max-width: 768px) {
	.cat-list {
		gap: 3vw;
	}
	.cat-item {
		width: calc((100% - 3vw) / 2);
		padding-top: 5vw;
	}
	.cat-item a {
		padding: 0.4em;
		border-radius: 1.3vw;
		font-size: 4vw;
	}
	.list .cont-ttl {
		font-size: 5.2vw;
		padding: 0.4em 1em;
	}
	.list-warp {
		gap: 5vw;
		margin-bottom: 5vw;
	}
	.list-item {
		width: 100%;
		border-radius: 2.7vw;
	}
	.list-image {
		width: 60%;
		margin: 5vw auto;
	}
	.list-txt {
		padding: 0 5vw;
	}
	.list-btn {
		font-size: 4.8vw;
		width: 68.5vw;
		height: 12vw;
		margin: 5vw auto;
		line-height: 12vw;
		border-radius: 1.3vw;
	}
	.list-read {
		font-size: 5.2vw;
		margin: 2vw auto 5vw;
	}
	/* 買取方法*/
	.sub-ttl {
		font-size: 4.2vw;
	}
	.howto-wrap {
		flex-wrap: wrap;
		gap: 5vw;
	}
	.howto-flow {
		flex: none;
		width: 100%;
	}
	.howto-faq {
		flex: none;
		width: 100%;
	}
}
