#wrap-search {
	position: relative;
	max-width:1100px;
	min-width:960px;
	margin:50px auto;
	padding:0 10px;
	-webkit-box-sizing:border-box;
			box-sizing:border-box;
}

#wrap-search h2 {
	margin-bottom: 40px;
	padding: 20px 30px 20px 30px;
	background: url(img/ttl_jp_items_00.png) no-repeat top center;
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 2px;
	margin-top: 94px;
	color: #efbc14;
}
#wrap-search p {
	font-size:24px;
	text-align: center;
	margin: 0;
	padding: 0;
	line-height: 1.4;
}
.searchitem {
	margin:30px 0;
}

.bx-search-item div {
	margin-bottom:50px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
			justify-content: center;
}
.bx-search-item div p {
	margin:0 !important;
	padding-top:20px;
	width:30%;
}
.bx-search-item input[type="text"],
.bx-search-item select {
	margin:0 25px;
	line-height: 70px;
	height:70px;
	padding:0 10px;
	width:40%;
	font-size: 20px;
	border:3px solid #0A2C71;
	border-radius:10px;
	-webkit-box-sizing:border-box;
			box-sizing:border-box;
}
.bx-search-item input[type="submit"] {
	display: block;
	background:#0A2C71;
	text-align: center;
	color:#fff;
	line-height: 70px;
	height:70px;
	width:15%;
	font-size: 20px;
	border:0;
	margin:100px auto 0 auto;
	border-radius:10px;
	-webkit-box-sizing:border-box;
			box-sizing:border-box;
}

@media only screen and (max-width: 767.98px) {

	#wrap-search{
		margin: 0;
		padding: 0 20px;
		min-width: inherit;
	}
	#wrap-search h2{
		margin: 0 0 20px;
		padding: 15px;
		font-size: 16px;
		background-position: center right -65px;
	}

	#wrap-search p{
		margin: 0 0 20px;
		font-size: 18px;
		font-weight: bold;
	}

}
/*---------- グラインダエリア ------------------------------*/
#wrap-grind {
	/*display: none;*/
	margin-bottom:60px;
}

/*---------- 地域選択 ------------------------------*/
.list-search-area{
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 40px;
    margin: 0;
}
.list-search-area li{}
.list-search-area button,.list-search-area a{
    display: flex;
    justify-content: center;
    align-items: center;
	height: 80px;
	width: 100%;
	font-size: 24px;
	font-weight: bold;
    border: 3px solid #0A2C71;
    border-radius: 3px;
    text-align: center;
    color: #0A2C71;
	transition: .2s;
}

.list-search-area span{
	font-size: 14px;
}

.list-search-area a.closed{
	background: #ddd;
    cursor: default;
}

.list-search-area a:not(.closed):hover{
	background: #b4c1dc;
}
.list-search-area a.is-selected{
	background:#0A2C71 !important;
	color:#EDBA14;
}

@media only screen and (max-width: 767.98px) {

	.list-search-area{
		grid-template-columns: none;
		gap: 20px;
	}

}
/*---------- 製品一覧 ------------------------------*/
.list-search-item {
	display: grid;
	grid-template-columns: repeat(4,minmax(0,1fr));
	gap:40px 20px;
}
.list-search-item li {
	position: relative;
}

.list-search-item li div {
	position: relative;
	clear:both;
	overflow:hidden;
	width:100%;
	margin-bottom:10px;
	border:1px solid #dfdfdf;
			transition:0.3s;
			border-radius: 3px;
}
.list-search-item li:hover div:after {
	position: absolute;
	content:'';
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(10,44,113,0.20);
}

.list-search-item li span {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	text-align: center;
	line-height:1.4;
	font-size:16px;
	padding:0 15px;
	border-radius:3px;
	background:#051638;
	width:100%;
	color:#fff;
	font-weight:700;
}
.list-search-item li:hover span {
	color:#EDBA14;
}
.list-search-item li img {
	width:100%;
	height:auto;
	-webkit-transition:0.5s;
	transition:0.5s;
	aspect-ratio: 1;
    object-fit: contain;
}
.list-search-item li:hover img {
	-webkit-transition:0.3s;
			transition:0.3s;
	-webkit-transform: scale(1.12);
			transform: scale(1.12);
}
.list-search-item li:hover {
	cursor: pointer;
}

/*-- 選択した時 --*/
/*
.list-search-item li.sel-prod {
	border:3px solid #0A2C71;
}
*/
.list-search-item li.sel-prod span {
	color:#EDBA14;
}
.list-search-item li.sel-prod img {
	-webkit-transform: scale(1.12);
			transform: scale(1.12);
}
.list-search-item li.sel-prod div:after {
	position: absolute;
	content:'';
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(10,44,113,0.70);
}
.list-search-item li a {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	text-indent:-9999px;
}

@media only screen and (max-width: 767.98px) {

	.list-search-item{
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
		margin: 0 0 40px;
	}

	.list-search-item li{
		width: 100%;
		margin: 0;
	}

	.list-search-item li div{
		margin: 0 0 5px;
	}

	.list-search-item li img{
		aspect-ratio: 1;
	}

	.list-search-item li span{
		width: inherit;
		padding: 5px 10px;
		font-size: 14px;
		line-height: 1.4;
		border-radius: 3px;
	}
}
/*---------- メーカー一覧 ------------------------------*/
.list-search-maker {
	display: grid;
	grid-template-columns: repeat(3,minmax(0,1fr));
	gap:40px;
	margin: 0;
}
.list-search-maker li {
	display:flex;
	justify-content: center;
	align-items:center;
	border:3px solid #0A2C71;
	border-radius:3px;
	text-align: center;
	color:#0A2C71;
	font-size:22px;
	padding:20px 0;
	-webkit-box-sizing:border-box;
			box-sizing:border-box;
	-webkit-transition:.2s;
			transition:.2s;
}
.list-search-maker li:nth-child(3n) {
	margin-right:0;
}
.list-search-maker li#mk4 {
	padding:5px 0 !important;
}
.list-search-maker li:hover {
	background: #b4c1dc;
	cursor:pointer;
}

.list-search-maker li.sel {
	background:#0A2C71;
	color:#EDBA14;
	cursor:pointer;
}

@media only screen and (max-width: 767.98px) {

	.list-search-maker{
		display: grid;
		grid-template-columns: repeat(2,minmax(0,1fr));
		gap: 10px;
	}

	.list-search-maker li{
		width: 100%;
		margin: 0;
		padding: 15px;
		font-size: 16px;
		line-height: 1.4;
		border-radius: 3px;
		border: 2px solid #0A2C71;
	}
}
/*---------- 検索フォーム ------------------------------*/
#wrap-formsearch {
	/*display: none;*/
	margin-bottom:150px;
}
.bx-search {
	display: -webkit-flex;
	display: flex;
	align-items: center;
	-webkit-justify-content: center;
			justify-content: center;
	max-width:1000px;
	min-width:900px;
	margin:0 auto;
}
.bx-search p {
	margin:0;
	padding-top:20px;
	font-size:24px;
}
.bx-search input[type="text"] {
	flex: none;
	line-height: 70px;
	height:70px;
	padding:0 10px;
	width:300px;
	font-size: 20px;
	border:2px solid #0a2c71;
	border-radius: 3px 0 0 3px;
	box-sizing:border-box;
}
.bx-search input[type="submit"] {
	flex: none;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #0a2c71;
	background: #dbe7ff;
	text-align: center;
	height:70px;
	width:100px;
	font-size: 20px;
	border:0;
	border-radius: 0 3px 3px 0;
	border: 2px solid #666;
	border-left: none;
	box-sizing:border-box;
			transition: .2s;
}

.bx-search input[type="submit"].is-clickable{
	color:#fff;
	background:#0A2C71;
}

.bx-search__field{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 0 0 20px;
}

@media only screen and (max-width: 767.98px) {

	#wrap-formsearch{
    margin: 0 0 60px;
	}

	.bx-search{
		display: block;
		width: 100%;
		min-width: inherit;
	}

	.bx-search__field{
		margin: 0;
	}

	.bx-search input[type="text"]{
		width: calc(100% - 80px);
		height: 60px;
		margin: 0;
		font-size: 16px;
		line-height: 1.4;
		box-sizing: border-box;
	}

	.bx-search input[type="submit"]{
		width: 80px;
		height: 60px;
		line-height: inherit;
		font-size: 16px;
	}

}
/*---------- 検索結果 ------------------------------*/
#results {
	padding: 40px 0;
	background:#f5f5f5;
	-webkit-box-sizing:border-box;
			box-sizing:border-box;
}
#wrap-results {
	position: relative;
	max-width:1100px;
	/* min-width:960px; */
	margin:0 auto;
	padding:0 10px;
	-webkit-box-sizing:border-box;
			box-sizing:border-box;
}
#wrap-results h2 {
	color:#EDBA14;
	font-size:40px;
	background:#0A2C71;
	text-align: center;
	line-height:98px;
	margin: 0 auto 50px auto;
	border-radius: 3px;
}
.bx-result {

	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
			justify-content: space-between;
}
.bx-result-item {
	width:25%;
	max-width:300px;
}
.bx-result-item img {
	display:block;
	width:100%;
	height:auto;
	margin-bottom:30px;
}
.bx-result-txt {
	width:70%;
}

.bx-result-item a {
	display: block;
	width:200px;
	border:3px solid #0A2C71;
	border-radius:3px;
	line-height: 50px;
	text-align:center;
	background:#fff;
	color:#0A2C71;
	-webkit-box-shadow:5px 5px 5px rgba(0,0,0,0.10);
			box-shadow:5px 5px 5px rgba(0,0,0,0.10);
	-webkit-box-sizing:border-box;
			box-sizing:border-box;
}

.bx-result-txt p {
	line-height:150%;
}
.bx-result-txt dl {
	margin-bottom:60px;
}
.bx-result-txt dl div {
	display: -webkit-flex;
	display: flex;
	box-sizing:border-box;
	border:3px solid #0A2C71;
	border-radius:3px;
	background: #fff;
}
.bx-result-txt dl div dt,
.bx-result-txt dl div dd {
	font-size: 24px;
	-webkit-box-sizing:border-box;
			box-sizing:border-box;
}
.bx-result-txt dl div dt {
	display: flex;
	justify-content: center;
	align-items: center;
	padding:20px;
	background:#0A2C71;
	text-align:center;
	color:#fff;
	width:35%;
	margin: 0;
}
.bx-result-txt dl div dd {
	display: flex;
	justify-content: center;
	align-items: center;
	padding:20px;
	margin: 0;
	color:#0A2C71;
	width:auto;
}

.wearing {
	font-size:60px;
	font-weight:700;
	text-align: center;
	margin:0 0 60px;
}
.wear_on {
	color:#0A2C71;
}
.wear_off {
	color:#FB0000;
}
.wearing_notice {
	max-width: 70%;
	margin: 0 0 0 auto;
	font-size:18px;
	color:#FB0000;
}

@media only screen and (max-width: 767.98px) {
	#results{
		padding: 20px 0;
	}
	
	#wrap-results{
		min-width: inherit;
		min-height: inherit;
	}

	#wrap-results h2{
		padding: 10px;
		font-size: 24px;
		line-height: 1.4;
		font-weight: bold;
		border-radius: 3px;
		margin: 0 0 20px;
	}

	.bx-result{
		display: block;
		margin: 0 0 20px;
	}

	.bx-result-item{
		display: flex;
		align-items: center;
		width: 100%;
		max-width: inherit;
		margin: 0 0 20px;
	}

	.bx-result-item img{
		max-width: 150px;
		margin: 0 20px 0 0;
	}

	.bx-result-item a{
		width: 150px;
		line-height: 40px;
		text-decoration: underline;
	}

	.bx-result-txt{
		width: 100%;

	}

	.bx-result-txt dl{
		margin: 0 0 40px;
	}

	.bx-result-txt dl div{
		display: flex;
		flex-wrap: wrap;
	}

	.bx-result-txt dl div dt{
		width: 100%;
		padding: 15px;
		font-size: 18px;
	}

	.bx-result-txt dl div dd{
		width: 50%;
		flex: none;
		padding: 10px;
		font-size: 18px;
		font-weight: bold;
		margin: 0;
		text-align: center;
	}

	.wearing{
		margin: 0;
		font-size: 28px;
		text-align: center;
	}

	.wearing_notice{
		font-size: 14px;
		text-align: center;
		max-width: 100%;
		margin: 20px 0 0;
	}
}
/*---------- グラインダー装着テーブル ------------------------------*/
.grind_table {
	width:100%;
	border-top:1px solid #707070;
	border-left:1px solid #707070;
	margin: 60px 0 0;
	table-layout: fixed;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
}
.grind_table th,
.grind_table td {
	text-align: center;
	padding:10px;
	border-right:1px solid #707070;
	border-bottom:1px solid #707070;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
}
.grind_table th {
	font-size:13px !important;
	white-space: nowrap;
	background:rgba(10,44,113,0.15);
}
.grind_table td {
	font-size:15px !important;
	/*vertical-align: top;*/
	background:#fff;
	min-height: 80px;
}
.grind_table td span {
	display: block;
	margin-bottom:10px;
}
.grind_table td img {
	max-width:100%;
	height:auto;
}
.g_ok,
.g_no {
	font-size:20px;
	font-weight:700;
}
.g_ok {	color:#0A2C71; }
.g_no {	color:#FB0000; }
.g_txt { color:#FB0000; font-size:14px !important; }

.notresults {
	margin:100px auto;
	text-align: center;
	font-size:20px;
}


@media only screen and (max-width: 767.98px) {

	.grind_table_sp{
		width: 100%;
		border-top: 1px solid #707070;
		border-left: 1px solid #707070;
		box-sizing: border-box;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.grind_table_sp > div{
		width: 50%;
		text-align: center;
		border-right: 1px solid #707070;
		border-bottom: 1px solid #707070;
		background: #fff;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}

	.grind_table_sp div dt span{
		font-size: 13px !important;
		font-weight: 700;
		white-space: nowrap;
		background: rgba(10,44,113,0.15);
		display: block;
		margin-bottom: 2%;
		padding: 4% 0;
	}

	.grind_table_sp div dt img{
		max-width: 200px;
		width: 100%;
		height: auto;
		padding: 2%;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}

	.grind_table_sp div dd{
		padding: 0 10px 10px;
		font-size: 15px !important;
		background: #fff;
		min-height: 80px;
	}

	.grind_table_sp div dd span{
		display: block;
		margin-bottom: 2%;
	}
	
}
/*---------- オートコンプリートCSS ------------------------------*/
.ui-widget-content {
	overflow-x:hidden;
	max-height:280px !important;
	
}
.ui-state-active {
	border:1px solid #efefef !important;
	background: #efefef !important;
	font-weight: normal !important;
}

@media only screen and (max-width: 767.98px) {

	
}


/*---------- グラインダー取付口 ------------------------------*/
.mounting{
	display: flex;
	gap: 40px;
	margin: 60px 0 0;
}
.mounting__parts{
	flex: none;
	max-width: 60%;
}
.mounting__separately{}

.mounting .required-text{
	text-align: center;
	font-size: 32px;
	color: red;
	font-weight: 700;
}

.mounting .norequired-text{
	text-align: center;
	font-size: 32px;
	font-weight: 700;
}

.mouting__comment{
	margin: 10px 0 0;
	text-align: center;
	font-size: 18px;
	font-weight: 700;
}

@media only screen and (max-width: 767.98px) {
	.mounting{
		display: block;
		margin: 40px 0 0;
	}
	.mounting__separately{
		margin: 40px 0 0;
	}
	.mounting__parts{
		max-width: 100%;
		font-size: 14px;
	}
	.mounting .norequired-text{
		font-size: 18px;
	}
	.mounting .required-text{
		font-size: 18px;
	}
}
/*---------- グラインダー取付口 ------------------------------*/

.flashBgAnime{
	animation: flashBgAnime 1s infinite;
}

@keyframes flashBgAnime {
	0%{
		background: #fff;
	}
	50%{
		background: #ffdce4;
	}
	100%{
		background: #fff;
	}
}

/*---------- 検索ページで非表示 ------------------------------*/
.grecaptcha-badge{
	display: none !important;
	clip-path: inset(100%);
}

.l-search-banner{
	display: none !important;
}



/*---------- 購入ボタン ------------------------------*/
.cart-btn{
    display: grid;
	place-content: center;
	max-width: 250px;
    height: 50px;
	margin: 0 auto;
	font-size: 14px;
    color: #fff;
	text-align: center;
    background: #0A2C71;
	border-radius: 100px;
	transition: .2s;
}

@media only screen and (max-width: 767.98px) {
	.cart-btn{
		font-size: 12px;
		height: 40px;
	}
}

.cart-btn:hover{
	opacity: .8;
}