@charset "utf-8";

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  Author : Hirohisa Kambe
  Date : 2026.03.26
  Copyright(C)HARD DISK. All rights reserved.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/

/* ========================
   search
======================== */

/* form */
.searchform {
	position: relative;
}

/* input */
.searchfield {
	width: 100%;
	font-size: 16px;
	padding: 8px 12px;
	border: 1px solid #bbb;
	border-radius: 20px;
	background-color: #fff;
}

/* button */
.searchsubmit {
	position: absolute;
	top: 50%;
	right: 12px;
	transform: translateY(-50%);
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 1.2em;
	cursor: pointer;
	color: #a0a0a0;
	border: none;
	background: transparent;
	transition: opacity 0.25s ease;
}

.searchsubmit:hover {
	opacity: 0.6;
}

/* ========================
   responsive
======================== */

/* PC */
@media (min-width: 992px) {
	.searchfield {
		width: 230px;
	}
}

/* SP */
@media (max-width: 991px) {
	.searchfield {
		width: 240px;
		margin: 16px 0 0 20px;
	}
}

/* ========================
   search result
======================== */

ul.searchUL {
	border-top: 1px dotted #b0b0b0;
	padding: 0;
	margin: 0;
}

ul.searchUL li {
	list-style: none;
	padding: 15px 0;
	border-bottom: 1px dotted #b0b0b0;
}