/* ####################################################
	shop-search
#################################################### */


/* ====================================
	search
==================================== */
.search__area {
	padding: 40px 0;
}
/* --------------------
	title
-------------------- */
@media only screen and (max-width: 414px) {
	.title__wrap h1::after{
		left: 40px;
	}
	.title__wrap h1::before{
		right: 40px;
	}
}
@media only screen and (max-width: 375px) {
	.title__wrap h1::after{
		left: 25px;
	}
	.title__wrap h1::before{
		right: 25px;
	}
}
@media only screen and (max-width: 320px) {
	.title__wrap h1::after{
		left: -27px;
	}
	.title__wrap h1::before{
		right: -27px;
	}
}
/* --------------------
	input
-------------------- */
.search__wrap--input {
	margin: 0 auto 50px auto;
	max-width: 600px;
	position: relative;
}
#shop_search__input{
	line-height: 60px;
	height: 60px;
	background-size: 60px;
	border: 1px solid #383838; /* --color-main */
	background-image: none;
}
.search__wrap--input input.search__btn{
	top: 0px;
	right: 0px;
}
/* --------------------
	check
-------------------- */
.search__wrap--check table {
	width: 100%;
	margin: 0 0 50px 0;
}

.search__wrap--check table th,
.search__wrap--check table td {
	vertical-align: middle;
	border: 1px solid #383838; /* --color-main */
}

.search__wrap--check table th {
	width: 200px;
	padding: 20px 10px;
    font-size: 1.5rem;
	font-weight: 700; /* --font-weight-noto-bold */
	background-color: #F3F1F0; /* --color-bg */
}

.search__wrap--check table td {
	padding: 20px 30px;
	width: calc(100% - 275px);
}

@media only screen and (max-width: 767px) {
	.search__wrap--check table{
	    margin: 0 0 70px 0;
		border-bottom: 1px solid #b6b6b6; /* --color-border-default */
	}
	.search__wrap--check table th, 
	.search__wrap--check table td{
		display: block;
		width: 100% !important;
	}
	.search__wrap--check table th{
		text-align: left;
	    border: 1px solid #b6b6b6; /* --color-border-default */
	}
	.search__wrap--check table td{
		border: 0;
		padding: 0;
	}
	.search__wrap--check table td div{
		display: flex;
		flex-wrap: wrap;
	}
/* --------------------
	input
-------------------- */
	.search__area{
		padding: 20px 0;
	}
	.search__wrap--input{
		margin: 0 auto 80px auto;
	}
	#shop_search__input{
		line-height: 80px;
		height: 80px;
		background-size: 80px;
	}
	.search__wrap--input input.search__btn{
		width: 80px;
		height: 80px;
	}
}
@media only screen and (max-width: 414px){
	#shop_search__input{
		line-height: 50px;
		height: 50px;
		background-size: 50px;
	}
	.nav-search_wrap #shop_search__input{
		height: 42px;
	}
	.search__wrap--input{
		max-width: 80%;
		margin: 0 auto 40px auto;
	}
	.search__wrap--check table{
		margin: 0 0 50px 0;
	}
	.search__wrap--check table th{
		padding: 15px 10px;
	}
	.search__wrap--input input.search__btn{
		width: 50px;
		height: 50px;
	}
}
@media only screen and (max-width: 375px){
	#shop_search__input{
		line-height: 40px;
		height: 40px;
		background-size: 40px;
		font-size: 1.1rem;
	}
	.search__wrap--input{
		max-width: 85%;
	}
	.search__wrap--input input.search__btn{
		width: 40px;
		height: 40px;
	}
}
@media only screen and (max-width: 320px){
	#shop_search__input{
		font-size: 1rem;
	}
	.nav-search_wrap #shop_search__input{
		height: 37px;
	}
}

/* --------------------
	radio
-------------------- */
/* 元々のラジオボタン（非表示） */
.custom__radio input[type="radio"] {
	display: none;
}

/* チェックボックスの代わりを成すラベル */
.custom__radio input[type="radio"] + label {
	display: none;
	cursor: pointer;
	display: inline-block;
	position: relative;
	padding-left: 20px;
	margin-right: 20px;
	margin-bottom: 10px;
	font-size: 1.5rem;
}

/* ラベルの左に表示させる正方形のボックス□ */
.custom__radio input[type="radio"] + label::before {
	content: "";
	position: absolute;
	display: block;
	box-sizing: border-box;
	width: 12px;
	height: 12px;
	margin-top: -5px;
	left: 0;
	top: 50%;
	border: 1px solid;
	background-color: #ffffff;

	/* wire frame */
	border-color: #999999; /* --wire-border-color */
}

/* チェックが入った時のレ点 */
.custom__radio input[type="radio"]:checked + label::after {
	content: "";
	position: absolute;
	display: block;
	box-sizing: border-box;
	width: 12px;
	height: 6px;
	margin-top: -5px;
	top: 50%;
	left: 3px;
	transform: rotate(-45deg);
	border-bottom: 3px solid;
	border-left: 3px solid;

	/* wire frame */
	border-color: #999999; /* --wire-border-color */
}

/* --------------------
	checkbox
-------------------- */
/* 元々のチェックボックス（非表示） */
.custom__checkbox input[type="checkbox"] {
	display: none;
}

/* チェックボックスの代わりを成すラベル */
.custom__checkbox input[type="checkbox"] + label {
	display: none;
	cursor: pointer;
	display: inline-block;
	position: relative;
	padding-left: 20px;
	margin-right: 20px;
	margin-bottom: 10px;
	font-size: 1.5rem;
}

/* ラベルの左に表示させる正方形のボックス□ */
.custom__checkbox input[type="checkbox"] + label::before {
	content: "";
	position: absolute;
	display: block;
	box-sizing: border-box;
	width: 12px;
	height: 12px;
	margin-top: -5px;
	left: 0;
	top: 50%;
	border: 1px solid;
	background-color: #ffffff;

	/* wire frame */
	border-color: #999999; /* --wire-border-color */
}

/* チェックが入った時のレ点 */
.custom__checkbox input[type="checkbox"]:checked + label::after {
	content: "";
	position: absolute;
	display: block;
	box-sizing: border-box;
	width: 12px;
	height: 6px;
	margin-top: -5px;
	top: 50%;
	left: 3px;
	transform: rotate(-45deg);
	border-bottom: 3px solid;
	border-left: 3px solid;

	/* wire frame */
	border-color: #999999; /* --wire-border-color */
}
/* --------------------
	submit
-------------------- */
#shop_search__submit {
	display: block;
	max-width: 340px;
	width: 100%;
	height: 60px;
	margin: 0 auto;
	font-size: 1.5rem;
	font-weight: 400; /* --font-weight-noto-regular */
	border: 1px solid #383838; /* --color-main */
	transition: 0.3s;
}
#shop_search__submit:hover{
	color: #fff;
	background-color: #4C4948; /* --color-accent */
	border: 1px solid #4C4948; /* --color-accent */
}
@media only screen and (max-width: 767px) {
	.custom__radio input[type="radio"] + label{
		width: 50%;
		margin-right: 0px;
		margin-bottom: 0px;
		padding-left: 60px;
		line-height: 60px;
		border-right: 1px solid #b6b6b6; /* --color-border-default */
		border-bottom: 1px solid #b6b6b6; /* --color-border-default */
	}
	.custom__radio input[type="radio"] + label::before{
		width: 20px;
		height: 20px;
		left: 30px;
		margin-top: -9px;
	}
	.custom__radio input[type="radio"]:checked + label::after{
	    left: 34px;
		margin-top: -4px;
	}
	.custom__checkbox input[type="checkbox"] + label{
		width: 50%;
		margin-right: 0px;
		margin-bottom: 0px;
		padding-left: 60px;
		line-height: 60px;
		border-right: 1px solid #b6b6b6; /* --color-border-default */
		border-bottom: 1px solid #b6b6b6; /* --color-border-default */
	}
	.custom__checkbox input[type="checkbox"] + label::before{
		width: 20px;
		height: 20px;
		left: 30px;
		margin-top: -9px;
	}
	.custom__checkbox input[type="checkbox"]:checked + label::after{
	    left: 34px;
		margin-top: -4px;
	}
/* --------------------
	submit
-------------------- */
	#shop_search__submit{
		max-width: 480px;
		height: 90px;
		border: 1px solid #b6b6b6; /* --color-border-default */
	}
}
@media only screen and (max-width: 414px){
	.custom__radio input[type="radio"] + label{
		line-height: 45px;
		padding-left: 40px;
	}
	.custom__radio input[type="radio"] + label::before{
		width: 15px;
		height: 15px;
		left: 20px;
		margin-top: -6px;
	}
	.custom__radio input[type="radio"]:checked + label::after{
		left: 22px;
		margin-top: -3px;
	}
	.custom__checkbox input[type="checkbox"] + label{
		line-height: 45px;
		padding-left: 40px;
	}
	.custom__checkbox input[type="checkbox"] + label::before{
		width: 15px;
		height: 15px;
		left: 20px;
		margin-top: -6px;
	}
	#shop_search__submit{
		max-width: 70%;
		height: 60px;
		color: #38383A;
	}
	.custom__checkbox input[type="checkbox"]:checked + label::after{
		left: 10.5%;
		margin-top: -3px;
	}
}
@media only screen and (max-width: 375px){
	.custom__radio input[type="radio"] + label{
		font-size: 1.3rem;
	}
	.custom__checkbox input[type="checkbox"] + label{
		font-size: 1.3rem;
	}
	.custom__checkbox input[type="checkbox"]:checked + label::after{
		left: 22px;
		margin-top: -2px;
	}
	.search__area{
		padding: 20px 0 0;
	}
	#shop_search__submit{
		height: 50px;
	}
}
@media only screen and (max-width: 320px){
	.custom__radio input[type="radio"] + label{
	    padding-left: 25px;
	}
	.custom__radio input[type="radio"] + label::before{
		width: 12px;
		height: 12px;
		left: 9px;
		margin-top: -5px;
	}
	.custom__checkbox input[type="checkbox"] + label{
	    padding-left: 25px;
	}
	.custom__checkbox input[type="checkbox"] + label::before{
		width: 12px;
		height: 12px;
		left: 9px;
		margin-top: -5px;
	}
	.custom__checkbox input[type="checkbox"]:checked + label::after{
		left: 7%;
		width: 9px;
		height: 5px;
	}
}
/* ====================================
	result
==================================== */
.result__area {
	padding: 80px 0 50px;
}

.result__flex {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.result__flex > li {
	max-width: 280px;
	width: 100%;
	margin: 0 26.5px 50px 0;
}

.result__flex > li:nth-child(4n) {
	margin: 0 0 50px 0;
}

.result__flex > li img {
	margin: 0 0 20px 0;
	border: 1px solid #b6b6b6; /* --color-border-default */
}
.result__flex > li a{
	display: block;
	opacity: 1;
	transition: 0.3s;
}
.result__flex > li a:hover{
	opacity: 0.6;
}
@media only screen and (max-width: 767px){
	.result__area{
		padding: 80px 5.025% 50px;
	}
	.result__flex{
		justify-content: space-between;
	}
	.result__flex > li{
		max-width: 48%;
		margin: 0 2% 50px 0;
	}
	.result__flex > li:nth-child(even){
		margin-right: 0;
	}
	.result__flex > li img{
		width: 100%;
	}
	.shop_cat{
		width: 100%;
		text-align: center;
		padding: 0 10px;
	}
}
@media only screen and (max-width: 414px){
	.result__area{
		padding: 60px 5.025% 50px;
	}
	.result__flex > li{
	    margin: 0 2% 30px 0;
	}
}