/* 検索・並び替えコントロール */
.list-controls {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5em;
	margin-bottom: 2.5em;
	padding: 1.5em 2em;
	background: linear-gradient(135deg, #2E2F31 0%, #252628 100%);
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.list-search-form {
	position: relative;
	flex: 1;
	min-width: 240px;
	max-width: 450px;
}
.list-search-input {
	width: 100%;
	padding: 1em 3.5em 1em 1.5em;
	background: rgba(0, 0, 0, 0.3);
	border: 2px solid transparent;
	border-radius: 30px;
	color: #fff;
	font-size: 1.4rem;
	outline: none;
	transition: all 0.3s ease;
}
.list-search-input:focus {
	border-color: #2DA9D7;
	background: rgba(0, 0, 0, 0.4);
	box-shadow: 0 0 0 4px rgba(45, 169, 215, 0.15);
}
.list-search-input::placeholder {
	color: #6B6C6E;
}
.list-search-button {
	position: absolute;
	right: 0.5em;
	top: 50%;
	transform: translateY(-50%);
	background: #2DA9D7;
	border: none;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}
.list-search-button:hover {
	background: #3DBAE8;
	transform: translateY(-50%) scale(1.05);
}
.list-search-button svg {
	width: 16px;
	height: 16px;
}
.list-sort {
	display: flex;
	align-items: center;
	gap: 0.6em;
}
.list-sort-label {
	color: #8A8B8D;
	font-size: 1.3rem;
	margin-right: 0.5em;
}
.list-sort-btn {
	position: relative;
	padding: 0.7em 1.5em;
	background: transparent;
	border: 2px solid #4A4B4D;
	border-radius: 25px;
	color: #A9A9A9;
	font-size: 1.3rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
	overflow: hidden;
}
.list-sort-btn:hover {
	border-color: #6A6B6D;
	color: #fff;
	background: rgba(255, 255, 255, 0.05);
}
.list-sort-btn.active {
	background: linear-gradient(135deg, #FFE207 0%, #FFC107 100%);
	border-color: transparent;
	color: #181818;
	font-weight: 600;
	box-shadow: 0 2px 12px rgba(255, 226, 7, 0.3);
}
.list-sort-btn.active:hover {
	background: linear-gradient(135deg, #FFF033 0%, #FFD333 100%);
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(255, 226, 7, 0.4);
}
.list-search-result {
	color: #2DA9D7;
	font-size: 1.4rem;
	margin-bottom: 1.5em;
	padding-left: 0.5em;
	border-left: 3px solid #2DA9D7;
}
.list-no-result {
	color: #6B6C6E;
	font-size: 1.6rem;
	text-align: center;
	padding: 4em 2em;
	background: rgba(0, 0, 0, 0.2);
	border-radius: 12px;
	margin: 2em 0;
}

/* レスポンシブ */
@media (max-width: 768px) {
	.list-controls {
		flex-direction: column;
		align-items: stretch;
		padding: 1.2em 1.5em;
		gap: 1.2em;
	}
	.list-search-form {
		max-width: 100%;
		min-width: auto;
	}
	.list-search-input {
		font-size: 1.6rem;
	}
	.list-sort {
		justify-content: center;
		flex-wrap: wrap;
	}
	.list-sort-label {
		width: 100%;
		text-align: center;
		margin-bottom: 0.3em;
	}
}

@media (max-width: 640px) {
	.list-controls {
		padding: 1em;
		border-radius: 10px;
	}
	.list-sort-btn {
		padding: 0.6em 1.2em;
		font-size: 1.2rem;
	}
	.list-search-result {
		font-size: 1.3rem;
	}
}
