@charset "UTF-8";

.search-detail-wrapper {
	width: 100%;
	max-width: 920px;
	background-color: #ffffff;
	border-radius: 14px;
	margin: 55px auto 0;
	padding-bottom: 80px;
}
@media screen and (max-width: 896px) {
	.search-detail-wrapper {
		width: 100%;
		max-width: 100%;
		background-color: #ffffff;
		border-radius: 14px;
		margin: 25px auto 0;
		padding-bottom: 40px;
	}
}

.search-detail-wrapper dl {
	padding: 30px 10px;
	margin: 0 60px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: baseline;
}
@media screen and (max-width: 896px) {
	.search-detail-wrapper dl {
		padding: 10px 5px;
		margin: 0 15px;
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		font-size: 11px;
	}
}
.search-detail-wrapper dl:not(:last-of-type) {
	border-bottom: solid 1px #f4f4f4;
}
.search-detail-wrapper dl:last-of-type {
	margin: 0 60px 30px;
}
@media screen and (max-width: 896px) {
	.search-detail-wrapper dl:last-of-type {
		margin: 0 15px 15px;
	}
}
.search-detail-wrapper dt {
	width: 200px;
}
@media screen and (max-width: 896px) {
	.search-detail-wrapper dt {
		width: calc(154 / 780 * 100%);
	}
}
.search-detail-wrapper dd {
	width: calc(100% - 210px);
	padding-left: 10px;
}
@media screen and (max-width: 896px) {
	.search-detail-wrapper dd {
		width: calc(100% - calc(154 / 780 * 100%));
		padding-left: calc(16 / 780* 100%);
	}
}

.keyword input[type="text"] {
	width: calc(100% - 40px);
	height: 48px;
	border: solid 1px #dddddd;
	border-radius: 5px;
	padding: 0 20px;
}
@media screen and (max-width: 896px) {
	.keyword input[type="text"] {
		width: 100%;
		height: 35px;
		padding: 0 10px;
	}
}
.keyword input[type="text"]:focus {
	outline: #dddddd;
}
.stlitem dd {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
    align-self: center;
}
.stlitem dt {
	margin-top: 5px;
}
@media screen and (max-width: 896px) {
	.stlitem dt {
		margin-top: 5px;
	}
}
.onoffswitch {
	position: relative;
	width: 68px;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select: none;
}
@media screen and (max-width: 896px) {
	.onoffswitch {
		width: 56px;
	}
}

.onoffswitch-checkbox {
	display: none;
}

.onoffswitch-label {
	display: block;
	overflow: hidden;
	cursor: pointer;
	border: 2px solid #999999;
	border-radius: 20px;
}
.onoffswitch-checkbox:checked + .onoffswitch-label {
	border-color: #ffffff;
}
.onoffswitch-inner {
	display: block;
	width: 200%; margin-left: -100%;
	transition: margin 0.3s ease-in 0s;
}

.onoffswitch-inner:before, .onoffswitch-inner:after {
	display: block;
	float: left;
	width: 50%;
	height: 28px;
	padding: 0;
	line-height: 28px;
	font-size: 14px;
	color: #ffffff;
	font-weight: bold;
	box-sizing: border-box;
}
@media screen and (max-width: 896px) {
	.onoffswitch-inner:before, .onoffswitch-inner:after {
		height: 23px;
		line-height: 23px;
		font-size: 10px;
	}
}

.onoffswitch-inner:before {
	content: "ON";
	padding-left: 8px;
	background-color: #17364f;
	color: #ffffff;
	/* text-shadow: 1px 1px #8fbe01; */
}

.onoffswitch-inner:after {
	content: "OFF";
	padding-right: 8px;
	background-color: #eeeeee;
	color: #333333;
	text-align: right;
	/* text-shadow: 1px 1px #cccccc; */
}

.onoffswitch-switch {
	display: block;
	width: 16px;
	height: 16px;
	margin: 4.5px;
	background: #999999;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 40px;
	border: 2px solid #999999;
	border-radius: 20px;
	transition: all 0.3s ease-in 0s; 
}
@media screen and (max-width: 896px) {
	.onoffswitch-switch {
		right: 30px;
	}
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
	margin-left: 0;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
	right: 0;
	background-color: #ffffff;
	border-color: #ffffff;
}
.stlitem dd p {
    padding: 0 0 0 10px;
}
.categoryselect {
	position: relative;
}
.categoryselect::before {
	position: absolute;
	content: "";
	display: block;
	border-right: solid 1px #818181;
	border-bottom: solid 1px #818181;
	width: 7px;
	height: 7px;
	top: calc(50% - calc(7px / 2));
	right: 20px;
	transform: rotate(45deg);
}
@media screen and (max-width: 896px) {
	.categoryselect::before {
		width: 4px;
		height: 4px;
		top: calc(50% - calc(4px / 2));
		right: 10px;
	}
}
.categoryselect select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	width: 100%;
	height: 48px;
	border: solid 1px #dddddd;
	border-radius: 5px;
	padding: 0 20px;
	background-color: #ffffff;
}
@media screen and (max-width: 896px) {
	.categoryselect select {
		height: 35px;
		padding: 0 10px;
	}
}
.categoryselect select:focus {
	outline: #dddddd;
}
.categorylv2 {
	margin-top: 10px;
	position: relative;
}
@media screen and (max-width: 896px) {
	.categorylv2 {
		margin-top: 4px;
	}
}
.categorylv2::before {
	position: absolute;
	content: "";
	display: block;
	border-left: solid 1px #919191;
	border-bottom: solid 1px #919191;
	width: 17px;
	height: 16px;
	top: 6px;
	left: 13px;
}
@media screen and (max-width: 896px) {
	.categorylv2::before {
		width: 8px;
		height: 8px;
		top: 8px;
		left: 12px;
	}
}
.categorylv3 {
	margin-top: 10px;
	position: relative;
}
@media screen and (max-width: 896px) {
	.categorylv3 {
		margin-top: 4px;
	}
}
.categorylv3::before {
	position: absolute;
	content: "";
	display: block;
	border-left: solid 1px #919191;
	border-bottom: solid 1px #919191;
	width: 17px;
	height: 16px;
	top: 6px;
	left: 53px;
}
@media screen and (max-width: 896px) {
	.categorylv3::before {
		width: 8px;
		height: 8px;
		top: 8px;
		left: 38px;
	}
}

.categorylv2 .categoryselect select {
	width: calc(100% - 40px);
	margin-left: 40px;
}
@media screen and (max-width: 896px) {
	.categorylv2 .categoryselect select {
		width: calc(100% - calc(78 / 780 * 100%));
		margin-left: calc(78 / 780 * 100%);
	}
}
.categorylv3 .categoryselect select {
	width: calc(100% - 80px);
	margin-left: 80px;
}
@media screen and (max-width: 896px) {
	.categorylv3 .categoryselect select {
		width: calc(100% - calc(150 / 780 * 100%));
		margin-left: calc(150 / 780 * 100%);
	}
}

.voice ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 10px;
}
@media screen and (max-width: 896px) {
	.voice ul {
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		gap: 4px;
	}
}
.voice li {
	width: calc(50% - 5px);
}
@media screen and (max-width: 896px) {
	.voice li {
		width: 100%;
	}
}
.voice input[type="checkbox"] {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: none;
}
.voice label {
	cursor: pointer;
	display: flex;
	align-items: center;
	/* width: calc(100% - 40px); */
	width: 100%;
	height: 48px;
	border: solid 1px #dddddd;
	border-radius: 5px;
	padding: 0 20px;
	box-sizing: border-box;
}
@media screen and (max-width: 896px) {
	.voice label {
		width: 100%;
		height: 35px;
		padding: 0 10px;
	}
}
.voice label span.star {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	position: relative;
	padding-left: 30px;
}
@media screen and (max-width: 896px) {
	.voice label span.star {
		align-items: flex-start;
		padding-left: 25px;
	}
}
.voice label span.star::before {
	position: absolute;
	content: "";
	display: block;
	border: solid 2px #dddddd;
	border-radius: 3px;
	width: 16px;
	height: 16px;
	top: calc(50% - 8px);
	left: 0;
	box-sizing: border-box;
}
@media screen and (max-width: 896px) {
	.voice label span.star::before {
		border: solid 1px #dddddd;
		width: 14px;
		height: 14px;
		top: calc(50% - calc(14px / 2));
	}
}
.voice label span.star::after {
	position: absolute;
	content: "";
	top: calc(50% - 9px);
	left: 5px;
	width: 5px;
	height: 9px;
	border-right: 2px solid #f06;
	border-bottom: 2px solid #f06;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	opacity: 0;
}
.voice label img {
	width: 80px;
	height: auto;
}
.voice input[type="checkbox"]:checked + label span.star::after {
	opacity: 1;
}
.size ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 10px;
}
.size input[type="checkbox"] {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: none;
}
.size label {
    text-decoration: none;
    display: flex;
	align-items: center;
	justify-content: center;
    border: solid 1px #dddddd;
    border-radius: 5px;
    width: 48px;
    height: 48px;
    cursor: pointer;
	box-sizing: border-box;
	line-height: 1;
}
@media screen and (max-width: 896px) {
	.size label {
		width: 37px;
		height: 37px;
	}
}
.size label span {
	font-size: 14px;
}
@media screen and (max-width: 896px) {
	.size label span {
		font-size: 11px;
	}
}
.size input[type="checkbox"]:checked + label {
	background-color: #1c2033;
	color: #ffffff;
}

.color ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 10px;
}
.color input[type="checkbox"] {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: none;
}
.colorname {
	text-indent: -9999px;
}
.color label {
    text-decoration: none;
    display: flex;
	align-items: center;
	justify-content: center;
    border-radius: 5px;
    width: 48px;
    height: 48px;
    cursor: pointer;
	box-sizing: border-box;
	position: relative;
}
@media screen and (max-width: 896px) {
	.color label {
		width: 37px;
		height: 37px;
	}
}
.color label.search-color-00003 {
	background-color: #000000;
}
.color label.search-color-00004 {
	background-color: #dfd2ab;
}
.color label.search-color-00001 {
	background-color: #ffffff;
    border: solid 1px #dddddd;
}
.color label.search-color-00002 {
	background-color: #808080;
}
.color label.search-color-00006 {
	background-color: #663300;
}
.color label.search-color-00021 {
	background-color: #663300;
}
.color label.search-color-00009 {
	background-color: #ff9999;
}
.color label.search-color-00019 {
	background-color: #0033cc;
}
.color label.search-color-00016 {
	background-color: #007700;
}
.color label.search-color-00014 {
	background-color: #ffff33;
}
.color label.search-color-00011 {
	background-color: #ff0000;
}
.color label.search-color-00007 {
	background-color: #800080;
}
.color label.search-color-00013 {
	background-color: #ff9900;
}
.color label.search-color-00018 {
	background-color: #c3a64c;
}
.color label.search-color-00023 {
	background: linear-gradient(135deg, #efefef 0%, #efefef 50%, #e5e5e5 50%, #e5e5e5 100%);
}
.color label.search-color-00022 {
	background: linear-gradient(135deg, #ebeb90 0%, #ebeb90 50%, #dfdf60 50%, #dfdf60 100%);
}
.color label.search-color-00026 {
	background: url(/component/v4/img/common/bg_multi.png) left top no-repeat;
}
@media screen and (max-width: 896px) {
	.color label.search-color-00026 {
		background: url(/component/v4/img/common/bg_multi.png) left top no-repeat;
		background-size: contain;
	}
}

.color label::after {
	position: absolute;
	content: "";
	top: calc(50% - 8px);
	left: 20px;
	width: 5px;
	height: 9px;
	border-right: 2px solid #f06;
	border-bottom: 2px solid #f06;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	opacity: 0;
}
@media screen and (max-width: 896px) {
	.color label::after {
		left: 16px;
	}
}
.color label::before {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	display: block;
	background-color: #ffffff;
	top: calc(50% - 10px);
	left: calc(50% - 10px);
	border-radius: 50%;
	opacity: 0;
}
@media screen and (max-width: 896px) {
	.color label::before {
		width: 15px;
		height: 15px;
		top: calc(50% - calc(15px /2));
		left: calc(50% - calc(15px /2));
	}
}

.color label.search-color-00001::before {
	border: solid 1px #dddddd;
}


.color input[type="checkbox"]:checked + label::before,
.color input[type="checkbox"]:checked + label::after {
	opacity: 1;
}


.preference .preference-list-item {
	width: calc(100% - 40px);
	border: solid 1px #dddddd;
	border-radius: 5px;
	position: relative;
	cursor: pointer;
}
@media screen and (max-width: 896px) {
	.preference .preference-list-item {
		width: 100%;
	}
}
.preference .preference-list-item~.preference-list-item {
	margin-top: 20px;
}
@media screen and (max-width: 896px) {
	.preference .preference-list-item~.preference-list-item {
		margin-top: 10px;
	}
}
.preference .preference-title {
	height: 48px;
	display: flex;
	align-items: center;
	padding: 0 20px;
	position: relative;
}
@media screen and (max-width: 896px) {
	.preference .preference-title {
		height: 35px;
		padding: 0 10px;
	}
}
.preference .preference-title::before {
	position: absolute;
	content: "";
	display: block;
	width: 14px;
	height: 1px;
	background-color: #686868;
	top: calc(50% - calc(1px / 2));
	right: 20px;
}
@media screen and (max-width: 896px) {
	.preference .preference-title::before {
		position: absolute;
		content: "";
		display: block;
		width: 10px;
		height: 1px;
		background-color: #686868;
		top: calc(50% - calc(1px / 2));
		right: 10px;
	}
}
.preference .preference-title::after {
	position: absolute;
	content: "";
	display: block;
	width: 14px;
	height: 1px;
	background-color: #686868;
	top: calc(50% - calc(1px / 2));
	right: 20px;
	transform: rotate(90deg);
}
.preference .preference-title.open::after {
	display: none;
}
@media screen and (max-width: 896px) {
	.preference .preference-title::after {
		position: absolute;
		content: "";
		display: block;
		width: 10px;
		height: 1px;
		background-color: #686868;
		top: calc(50% - calc(1px / 2));
		right: 10px;
		transform: rotate(90deg);
	}
}
.preference .preference-lineup {
	border-top: solid 1px #dddddd;
	padding: 20px 20px;
	background-color: #fafafa;
	display: none;
}
@media screen and (max-width: 896px) {
	.preference .preference-lineup {
		border-top: solid 1px #dddddd;
		padding: 10px 10px;
		background-color: #fafafa;
	}
}




.preference .preference-lineup ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 10px;
}
@media screen and (max-width: 896px) {
	.preference .preference-lineup ul {
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		gap: 5px;
	}
}
.preference .preference-lineup li {
	width: calc(50% - 5px);
}
@media screen and (max-width: 896px) {
	.preference .preference-lineup li {
		width: 100%;
	}
}
.preference .preference-lineup input[type="checkbox"] {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: none;
}
.preference .preference-lineup label {
	cursor: pointer;
	display: flex;
	align-items: center;
	/* width: calc(100% - 40px); */
	width: 100%;
	height: 48px;
	border: solid 1px #dddddd;
	border-radius: 5px;
	padding: 0 20px;
	box-sizing: border-box;
	background-color: #ffffff;
}
@media screen and (max-width: 896px) {
	.preference .preference-lineup label {
		height: 35px;
		padding: 0 10px;
	}
}
.preference .preference-lineup label span {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	position: relative;
	padding-left: 30px;
}
@media screen and (max-width: 896px) {
	.preference .preference-lineup label span {
		padding-left: 25px;
	}
}
.preference .preference-lineup label span::before {
	position: absolute;
	content: "";
	display: block;
	border: solid 2px #dddddd;
	border-radius: 3px;
	width: 16px;
	height: 16px;
	top: calc(50% - 8px);
	left: 0;
	box-sizing: border-box;
}
@media screen and (max-width: 896px) {
	.preference .preference-lineup label span::before {
		border: solid 1px #dddddd;
		width: 14px;
		height: 14px;
		top: calc(50% - calc(14px / 2));
	}
}
.preference .preference-lineup label span::after {
	position: absolute;
	content: "";
	top: calc(50% - 9px);
	left: 5px;
	width: 5px;
	height: 9px;
	border-right: 2px solid #f06;
	border-bottom: 2px solid #f06;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	opacity: 0;
}
.preference .preference-lineup input[type="checkbox"]:checked + label span::after {
	opacity: 1;
}

.price .slider_box {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	column-gap: 20px;
}
@media screen and (max-width: 896px) {
	.price .slider_box {
		column-gap: 10px;
	}
}

@media screen and (max-width: 896px) {
	.low,.high {
		width: calc(340 / 780 * 100%);
	}
}

.price input[type="text"] {
	width: calc(170px - 40px);
	height: 48px;
	border: solid 1px #dddddd;
	border-radius: 5px;
	padding: 0 20px;
}
@media screen and (max-width: 896px) {
	.price input[type="text"] {
		width: 100%;
		height: 35px;
		padding: 0 10px;
	}
}
.price input[type="text"]:focus {
	outline: #dddddd;
}

.pricelist {
	position: relative;
	margin-top: 20px;
}
.pricelist::before {
	position: absolute;
	content: "";
	display: block;
	border-right: solid 1px #818181;
	border-bottom: solid 1px #818181;
	width: 7px;
	height: 7px;
	top: calc(50% - calc(7px / 2));
	right: 20px;
	transform: rotate(45deg);
}
@media screen and (max-width: 896px) {
	.pricelist::before {
		width: 4px;
		height: 4px;
		top: calc(50% - calc(4px / 2));
		right: 10px;
	}
}
.pricelist select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	width: 100%;
	height: 48px;
	border: solid 1px #dddddd;
	border-radius: 5px;
	padding: 0 20px;
	background-color: #ffffff;
}
@media screen and (max-width: 896px) {
	.pricelist select {
		height: 35px;
		padding: 0 10px;
	}
}
.pricelist select:focus {
	outline: #dddddd;
}

.price .pricerange {
	width: calc(100% - 176px);
	height: 4px;
	margin: 0 0 25px;
}
@media screen and (max-width: 896px) {
	.price .pricerange {
		width: calc(100% - 6px);
		height: 2px;
		margin: 0 0 25px;
	}
}

.asRange .asRange-pointer {
	position: absolute;
	left: 30%;
	z-index: 2;
	width: 12px;
	height: 12px;
	margin-left: -4px;
	background-color: #ffffff;
	border-radius: 18px;
}
@media screen and (max-width: 896px) {
	.asRange .asRange-pointer {
		width: 10px;
		height: 10px;
	}
}

.asRange .asRange-pointer:before {
	position: absolute;
    top: -8px;
    right: -4px;
    bottom: 0;
    left: -4px;
	content: "";
	background: #1c2033;
	border-radius: inherit;
}
@media screen and (max-width: 896px) {
	.asRange .asRange-pointer:before {
		top: -6px;
		right: -4px;
		bottom: 0;
		left: -2px;
	}
}

.asRange .asRange-pointer:after {
	position: absolute;
    top: -6px;
    right: -2px;
    bottom: 2px;
    left: -2px;
	content: "";
	background: #ffffff;
	border-radius: inherit;
}
@media screen and (max-width: 896px) {
	.asRange .asRange-pointer:after {
		top: -4px;
		right: -2px;
		bottom: 2px;
		left: 0;
	}
}

.asRange-scale {
	position: relative;
	width: calc(100% - 176px);
	height: 2px;
}
@media screen and (max-width: 896px) {
	.asRange-scale {
		width: calc(100% - 6px);
	}
}

.asRange .asRange-selected {
	position: absolute;
	left: 30%;
	z-index: 1;
	width: 40%;
	height: 4px;
	background-color: #1c2033;
	border-radius: 9px;
}

.asRange .asRange-pointer .asRange-tip {
	display: none;
}

