@charset "UTF-8";
/*==========================
	カスタム検索フォーム
	custom-search.css
==========================*/

/* 検索フォーム全体のコンテナ */
.custom-search-box {
	position: relative;
	margin-bottom: 35px;
	/* padding: 25px; */
	border: none;
}

/* 検索フォーム */
.custom-search-form {
	display: flex;
	gap: 0;
	align-items: center;
	position: relative;
	background: #fff;
	overflow: hidden;
}

/* 検索入力フィールド */
.custom-search-input {
	flex: 1;
	padding: 15px 100px 15px 25px;
	border: none;
	font-size: 15px;
	background-color: transparent;
	color: #333;
	font-weight: 400;
	border: 1px solid #ddd;
	border-radius: 6px;
}

.custom-search-input::placeholder {
	color: #999;
	font-weight: 300;
}

.custom-search-input:focus {
	outline: none;
	border-color: #cfa326;
}

/* 検索ボタン */
.custom-search-button {
	position: absolute;
	top: 5px;
	right: 5px;
	padding: 7px 15px 5px 15px;
	background: #cfa326;
	color: white;
	border: none;
	border-radius: 6px;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	margin: 4px;
	letter-spacing: 0.5px;
}

.custom-search-button:hover {
	opacity: 0.8;
}

/* 検索結果のヘッダー */
.custom-search-results-header {
	margin-bottom: 30px;
	padding-bottom: 15px;
	border-bottom: 2px solid #cfa326;
}

.custom-search-results-header h2 {
	font-size: 20px;
	color: #333;
	margin-bottom: 10px;
}

.custom-search-results-count {
	font-size: 14px;
	color: #666;
}

/* 検索結果なしのメッセージ */
.custom-no-results-message {
	padding: 40px 20px;
	text-align: center;
	background-color: #f9f9f9;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.custom-no-results-message h3 {
	font-size: 18px;
	color: #666;
	margin-bottom: 15px;
}

.custom-no-results-message p {
	font-size: 14px;
	color: #888;
	line-height: 1.6;
}

.custom-no-results-message ul {
	list-style: none;
	padding: 0;
	margin-top: 20px;
}

.custom-no-results-message ul li {
	margin-bottom: 8px;
	font-size: 14px;
	color: #666;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
	.custom-search-box {
		padding: 20px 0;
	}

	.custom-search-form {
	}

	.custom-search-input {
		width: 100%;
		padding: 15px 20px;
	}

	.custom-search-button {
	}
}
