.item-list .apf-box {
	width: 100%;
	margin: 0 auto 10px;
	border-radius: 5px;
}
.apf-form {
	background: #f1f1f1;
	border-radius: 5px;
	padding: 2rem 3.5rem;
}
.apf-toggle {
	display: none;
}
.apf-toggle-btn {
	display: none;
}
.apf-group {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: flex-start;
}
.apf-group + .apf-group {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px dashed #d3d3d3;
}
.apf-group dt {
	font-size: 14px;
	flex: 0 0 auto;
	width: 215px;
	min-height: 28px;
	padding-right: 25px;
	box-sizing: border-box;
	border-right: 1px solid #969696;
	color: #555555;
	display: flex;
	align-items: center;
}
.apf-group dd {
	flex: 1 1 0;
	min-width: 0;
	padding-left: 25px;
	box-sizing: border-box;
}
.apf-group dd ul {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.apf-group dd label {
	position: relative;
	display: block;
	background: #FFF;
	border: 1px solid #a8a8a8;
	border-radius: 100px;
	padding: 5px 13px;
	font-size: 13px;
	line-height: 1.3;
	color: #555555;
	cursor: pointer;
	transition: var(--transition);
}
.apf-group dd label:hover {
	border-color: #000;
	color: #000;
}
.apf-group dd label input[type="checkbox"] {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	opacity: 0;
}
.apf-group dd label:has(input:checked) {
	border-color: var(--main-color);
	box-shadow: 0px 0px 0px 1px var(--main-color);
	color: var(--main-color);
	font-weight: bold;
}
.apf-group dd label:has(input:focus-visible) {
	outline: 2px solid var(--main-color);
	outline-offset: 2px;
}
.apf-brand dd label {
	padding: 4px 10px;
}
.apf-brand dd label img {
	display: block;
	width: 100px;
	height: 29px;
	object-fit: contain;
}
.apf-action {
	margin: 14px 0 0;
	padding-top: 12px;
	border-top: 1px dashed #d3d3d3;
	text-align: center;
}
.apf-live .apf-action {
	display: none;
}
.apf-submit {
	display: block;
	max-width: 250px;
	width: 100%;
	margin: 0 auto;
	background: var(--main-color);
	border: 1px solid var(--main-color);
	border-radius: 100px;
	padding: 10px 25px;
	color: #FFF;
	font-size: 13px;
	font-weight: bold;
	line-height: 1.3;
	cursor: pointer;
	transition: var(--transition);
}
.apf-submit span:before {
	font-family: "Font Awesome 5 Free";
	content: '\f0b0';
	font-weight: 900;
	margin-right: 8px;
}
.apf-submit:hover {
	opacity: 0.75;
}

.item-list .now-number,
.item-list .pagenation,
.item-list .item-inner {
	transition: opacity .15s ease-out;
}
.item-list.apf-loading .now-number,
.item-list.apf-loading .pagenation,
.item-list.apf-loading .item-inner {
	opacity: 0.4;
}

.item-list .sort-box {
	max-width: 100%;
	display: flex;
	flex-direction: column;
}
.item-list .sort-box > div.sort-color {
	order: 1;
	margin-top: 0;
	margin-bottom: 10px;
}
.item-list .sort-box > div.sort-terms {
	order: 3;
	margin-top: 0;
	margin-bottom: 0;
	padding: 1rem 0;
	background: #FFF;
}
.item-list .sort-box > div.sort-terms dt {
	display: none;
}
.item-list .sort-box > div.sort-terms dd {
	padding-left: 0;
}
.item-list .sort-box dt {
	flex: 0 0 auto;
	width: 215px;
	padding-right: 25px;
}
.item-list .sort-box dd {
	flex: 1 1 0;
	min-width: 0;
	width: auto;
	padding-left: 25px;
}
.sort-box .sort-terms ul {
	justify-content: flex-start;
	gap: 0;
}
.sort-box .sort-terms ul li {
	width: auto;
	padding: 0 2.5rem;
	border-left: 1px solid #d9d9d9;
	line-height: 1.6;
}
.sort-box .sort-terms ul li:first-child {
	padding-left: 0;
	border-left: none;
}
.sort-box .sort-color ul li {
	width: 68px;
}
.item-list .sort-box .clear-btn {
	display: none;
}
.item-list .sort-box > div.apf-clear-box {
	order: 2;
	background: none;
	border-radius: 0;
	padding: 0;
	margin: 5px 0 15px;
}
.item-list .apf-clear-box a {
	display: block;
	max-width: 250px;
	background: #FFF;
	padding: 10px 25px;
	border: 1px solid #969696;
	border-radius: 100px;
	text-align: center;
	color: #555555;
	font-size: 13px;
	margin: 0 auto;
	transition: var(--transition);
}
.item-list .apf-clear-box a:hover {
	border-color: #000;
	color: #000;
	opacity: 1;
}

@media screen and (max-width: 810px) {
	.apf-group {
		flex-flow: column;
	}
	.apf-group dt {
		flex: 0 0 auto;
		width: 100%;
		min-height: 0;
		border-right: none;
		border-bottom: 1px solid #969696;
		padding: 0 0 8px;
		margin-bottom: 8px;
		justify-content: center;
	}
	.apf-group dd {
		flex: 0 0 auto;
		width: 100%;
		padding: 0;
	}
	.apf-group dd ul {
		justify-content: center;
	}
	.item-list .sort-box dt {
		flex: 0 0 auto;
		width: 100%;
		padding: 0 0 10px;
	}
	.item-list .sort-box dd {
		flex: 0 0 auto;
		width: 100%;
		padding: 0;
	}
	.sort-box .sort-terms ul {
		justify-content: center;
		gap: 0;
	}
	.sort-box .sort-terms ul li:first-child {
		padding-left: 2.5rem;
	}
	.sort-box .sort-color ul {
		justify-content: center;
	}
}

@media screen and (max-width: 480px) {
	.apf-form {
		padding: 0;
	}
	.apf-toggle-btn {
		display: block;
		padding: 13px 10px;
		text-align: center;
		font-size: 14px;
		font-weight: bold;
		color: #555555;
		cursor: pointer;
	}
	.apf-toggle-btn span:before {
		font-family: "Font Awesome 5 Free";
		content: '\f0b0';
		font-weight: 900;
		margin-right: 8px;
	}
	.apf-toggle-btn span:after {
		content: "＋";
		margin-left: 8px;
	}
	.apf-toggle:checked + .apf-toggle-btn span:after {
		content: "−";
	}
	.apf-body {
		display: none;
		padding: 0 2.5rem 2rem;
	}
	.apf-toggle:checked + .apf-toggle-btn + .apf-body {
		display: block;
	}
	.apf-toggle:checked + .apf-toggle-btn {
		border-bottom: 1px solid #d3d3d3;
		margin-bottom: 2rem;
	}
	.apf-group dd label {
		padding: 6px 12px;
	}
	.apf-brand dd label img {
		width: 88px;
		height: 26px;
	}
	.apf-live .apf-action {
		display: block;
	}
	.item-list .sort-box > div.sort-terms {
		padding: 1rem 0;
	}
	.sort-box .sort-terms ul li {
		padding: 0 1.3rem;
	}
	.sort-box .sort-terms ul li:first-child {
		padding-left: 1.3rem;
	}
}
