#items_search {
	width: 100%;
}
#items_search .inner {
	width: 90%;
	max-width: 1120px;
	margin: 0 auto 200px;
}
#items_search .inner .search_blk {
	margin-bottom: 20px;
}
#items_search .inner .search_blk .search-bar {
	margin-left: auto;
}
/*empty*/
#items_search .inner .empty {
    color: #3C3C3C;
    font-family: Murecho;
    font-size: 14px;
    font-weight: 400;
    line-height: 2.1em;
    letter-spacing: 0.04em;
    margin-bottom: 40px;
    text-align: center;    
}

/* 768px */
@media screen and (max-width: 768px) {

	#items_search {
		width: 100%;
	}
	#items_search .inner {
		position: relative;
		width: 100%;
		max-width: 89.7%;
		margin: 0 auto 40.96vw;
	}
	#items_search .inner .search_blk {
		margin-bottom: 7.68vw;
		/*padding-top: 29.184vw;*/
	}
	/*empty*/
	#items_search .inner .empty {
		font-size: 3.584vw;
		margin-bottom: 10.24vw;
		text-align: center;    
	}
}

/* container */
#container {
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	align-items: flex-start;
	-webkit-align-items: flex-start;
}
#container .category {
	width: 20%;
}
#container .category h5 {
	color: #3C3C3C;
	font-family: Kiwi Maru;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.7em;
	text-align: left;
	margin-bottom: 16px;
}
#container .category .block {
	border-bottom: 1px solid #EAEAEA;
	margin-bottom: 20px;
	padding-bottom: 20px;
}
#container .category .block h6 {
	border-radius: 4px;
	background-color: #DFE8EC;
	color: #3C3C3C;
	font-family: Kiwi Maru;
	font-size: 12px;
	font-weight: 300;
	line-height: 22px;
	letter-spacing: 0.04em;
	text-align: left;	
	position: relative;
	padding: 4px 20px;
}
#container .category .block h6::before,
#container .category .block h6::after {
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	width: 16px;
	height: 16px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: '';
}
#container .category .block h6::before {
	left: 4px;
	background-image: url('../images/icon/icon_plot.svg');
}
#container .category .block h6::after {
	right: 4px;
	background-image: url('../images/icon/icon_arrow_up.svg');
	transition: all 0.5s; 
    -webkit-transition: all 0.5s; 
}
/* active */
#container .category .block h6.active::after {
    -webkit-transform: translate(0, -50%) rotate(180deg);
	transform: translate(0, -50%) rotate(180deg);
}
#container .category .block .cat_inner.hidden {
    overflow: hidden;
}
#container .category .block .cat_inner .cat_txt {
    display: none;
	padding-left: 16px;
	padding-top: 4px;
}
#container .category .block .cat_inner .cat_txt .select_chk {
	border-radius: 4px;
	color: #3C3C3C;
	display: block;
	font-family: Kiwi Maru;
	font-size: 12px;
	font-weight: 300;
	line-height: 1.8em;
	text-align: left;
	margin-bottom: 4px;
	padding: 0 8px;	
	width: 100%;
}
input[type=checkbox]:checked +.select_chk {
	position: relative;
	background-color: #EAEAEA;
}
input[type=checkbox]:checked +.select_chk:hover::before {
	position: absolute;
	top: 50%;
	right: 4px;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	width: 16px;
	height: 16px;
	background-image: url('../images/icon/icon_close_gray.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: '';
}

#container .items_part {
	width: 79%;
}
#container .items_part .selected_value {
	margin-bottom: 20px;
}
#container .items_part ul {
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	justify-content: flex-start;
	-webkit-justify-content: flex-start;
}
#container .items_part ul li {
	margin-top: 40px;
	width: 24%;
	margin-left: 8px;
}
#container .items_part ul li:first-child,
#container .items_part ul li:nth-child(2),
#container .items_part ul li:nth-child(3),
#container .items_part ul li:nth-child(4) { margin-top: 0;}

#container .items_part ul li .img a img {
    width: 100%;
    height: 180px;
}
/* 768px */
@media screen and (max-width: 768px) {

	/* container */
	#container {
		display: block;
	}
	#container .category {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
	}
	#container .category h5 a {
		display: block;
		background-color: #358CB6;
		color: #FFF;
		font-size: 5.12vw;
		line-height: 1.3em;
		margin-bottom: 0;
		padding: 6.144vw;
		text-align: center;
	}
	.modal {
		position: fixed;
        inset: 0;
		background-color: #FFF;
		display: none;
		max-width: 100%;
		height: calc(100vh - 1vw);
		overflow-y: scroll;
    	-webkit-overflow-scrolling: touch;
	}
	.modal:target {
		display: block;
		z-index: 9999;
	}
	#container .category #cate_blk {
		background-color: #FFF;
	}
	#container .category #cate_blk .top_search {
		position: relative;
		padding: 10.24vw 5.12vw 2.56vw;
	}
	#container .category #cate_blk .top_search h4 {
		color: #3C3C3C;
		font-family: Murecho;
		font-size: 5.12vw;
		font-weight: 500;
		line-height: 1.3em;
		letter-spacing: 0.04em;
		text-align: center;		
	}
	#container .category #cate_blk .top_search a {
		position: absolute;
		top: 70%;
		right: 5.12vw;
		-webkit-transform: translate(0, -50%);
		transform: translate(0, -50%);
		display: block;
		width: 8.192vw;
		height: 8.192vw;
		border-radius: 50%;
		-webkit-border-radius: 50%;
		background-color: #EAEAEA;
		background-image: url('../images/icon/icon_close.svg');
		background-position: center;
		background-repeat: no-repeat;
		background-size: 6.144vw 6.144vw;
	}
	#container .category #cate_blk .inr_blk {
		position: relative;
		padding-top: 17.92vw;
	}
	#container .category #cate_blk .inr_blk .nedan {
		position: absolute;
		top: 0;
		left: 0;
		display: flex;
		display: -webkit-flex;
		flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
		justify-content: space-between;
		-webkit-justify-content: space-between;
		align-items: center;
		padding: 4.096vw;
	}
	#container .category #cate_blk .inr_blk .nedan span {
		width: 12%;
		color: #3C3C3C;
		font-family: Murecho;
		font-size: 3.072vw;
		font-weight: 400;
		line-height: 1.8em;
		letter-spacing: 0.04em;
		text-align: left;
		
	}
	#container .category .block {
		box-shadow: 0 0.1024vw 0.2048vw 0 rgba(0, 0, 0, 10%);
		border-bottom: unset;
		margin-bottom: 0;
		padding-bottom: 0;
	}
	#container .category .block h6 {
		border-radius: 0;
		font-size: 5.12vw;
		font-weight: 500;
		line-height: 1.3em;
		text-align: center;	
		position: relative;
		padding: 3.328vw 0;
	}
	#container .category .block h6::before {
		display: none;
	}
	#container .category .block h6::after {
		width: 8.192vw;
		height: 8.192vw;
	}
	#container .category .block h6::after {
		right: 2.56vw;
	}
	/* active */
	#container .category .block h6.active::after {
		-webkit-transform: translate(0, -50%) rotate(180deg);
		transform: translate(0, -50%) rotate(180deg);
	}
	#container .category .block .cat_inner .cat_txt {
		display: none;
		padding: 5.12vw;
	}
	#container .category .block .cat_inner .cat_txt div {
		margin-bottom: 5.12vw;
	}
	#container .category .block .cat_inner .cat_txt div:last-of-type {
		margin-bottom: 0;
	}
	#container .category .block .cat_inner .cat_txt .select_chk {
		position: relative;
		border-radius: 0;
		font-size: 3.584vw;
		font-weight: 500;
		text-align: right;
		margin-bottom: 0;
		padding: 0 8.704vw;	
		width: 100%;
	}
	.select_chk:after {
		display: block;
		position: absolute;
		content: '';
		top: 50%;
		right: 0;
		-webkit-transform: translate(0, -50%);
		transform: translate(0, -50%);
		width: 1.9em;
		height: 1.9em;
		background-image: url('../images/icon/icon_check.svg');
		background-position: center;
		background-size: contain;
		background-repeat: no-repeat;
		border-radius: 4px;
		-webkit-border-radius: 4px;
		-webkit-transition: border-color 0.5s linear;
		transition: border-color 0.5s linear;
		z-index: 10;
	}
	.select_chk:before {
		display: block;
		position: absolute;
		content: '';
		top: 50%;
		right: -1.05em;;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		width: 2em;
		height: 2em;
		background: url('../images/icon/icon_checked.svg') no-repeat;
		background-size: contain;
		-webkit-transition: opacity 0.5s linear;
		transition: opacity 0.5s linear;
		opacity: 0;
		filter: alpha(opacity=0);
		zoom:1;
		z-index: 30;
	}
	input[type=checkbox]:checked +.select_chk {
		position: relative;
		background-color: transparent;
	}
	input[type=checkbox]:checked + .select_chk:before {
		opacity: 1;
		filter: alpha(opacity=100);
		-ms-filter: "alpha(opacity=100)";
		-moz-opacity: 1.0;
		-khtml-opacity: 1.0;
	}
	input[type=checkbox]:checked +.select_chk:hover::before {
		display: block;
		position: absolute;
		content: '';
		top: 50%;
		right: -1.05em;;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		width: 2em;
		height: 2em;
		background: url('../images/icon/icon_checked.svg') no-repeat;
		background-size: contain;
		-webkit-transition: opacity 0.5s linear;
		transition: opacity 0.5s linear;
		opacity: 1;
		filter: alpha(opacity=0);
		zoom:1;
	}


	#container .items_part {
		width: 100%;
	}
	#container .items_part .selected_value {
		margin-bottom: 7.68vw;
	}
	#container .items_part ul {
		display: flex;
		display: -webkit-flex;
		flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
		justify-content: space-between;
		-webkit-justify-content: space-between;
	}
	#container .items_part ul li {
		margin-top: 10.24vw;
		width: 48.8%;
	}
	#container .items_part ul li:nth-child(3),
	#container .items_part ul li:nth-child(4) { margin-top: 10.24vw;}

}


/* PRODUCT DETAIL */

#product_top {
	display: flex;
    display: -webkit-flex;
	flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
	justify-content: space-between;
    -webkit-justify-content: space-between;
}
#product_top .product_img {
	width: 43%;
}
#product_top .product_detail {
	width: 54%;
}
#product_top .product_detail dl {
	display: flex;
    display: -webkit-flex;
	flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
	justify-content: flex-start;
    -webkit-justify-content: flex-start;
    align-items: center;
    -webkit-align-items: center;
}
#product_top .product_detail .tag {
	border-bottom: 1px solid #EAEAEA;
	padding-bottom: 10px;
}
#product_top .product_detail .tag span {
	background-color: #DFE8EC;
    border-radius: 10px;
    color: #3C3C3C;
    font-family: Murecho;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.6em;
    letter-spacing: 0.04em;
    margin-left: 6px;
    padding: 0 6px 0 4px;
    text-align: left;
}
#product_top .product_detail .tag span:first-child {
    margin-left: 0;
}
#product_top .product_detail .name {
	border-bottom: 1px solid #EAEAEA;
	padding: 4px 0;
}
#product_top .product_detail .name h4 {
	color: #3C3C3C;
	font-family: Kiwi Maru;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.3em;
	text-align: left;
}
#product_top .product_detail .name h5 {
	color: #3C3C3C;
	font-family: Murecho;
	font-size: 14px;
	font-weight: 500;
	line-height: 2.1em;
	letter-spacing: 0.04em;
	text-align: left;
}
#product_top .product_detail .name h5.second {
	border: 1px solid #358CB6;
	background-color: #DFE8EC;
    color: #358CB6;
    font-family: Murecho;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.6em;
    letter-spacing: 0.04em;
    text-align: center;
	width: 120px;
	padding: 4px;
}
#product_top .product_detail .color {
	padding: 10px 0;
}
#product_top .product_detail .color dl dt {
	color: #3C3C3C;
	font-family: Murecho;
	font-size: 14px;
	font-weight: 400;
	line-height: 2.1em;
	letter-spacing: 0.04em;
	text-align: left;	
	width: 30%;
}
#product_top .product_detail .color dl dd { width: 70%;}
#product_top .product_detail .color dl dd select {
	width: 60%;
}
#product_top .product_detail .info {
	border-bottom: 1px solid #E0F0F3;
	padding-bottom: 10px;
}
#detail .ttl_info,
#product_top .product_detail .info .ttl_info {
	background-color: #B8B8B8;
	color: #fff;
	font-family: Kiwi Maru;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.7em;
	text-align: center;
}
#product_top .product_detail .info .txt_info{
	margin-top: 10px;
	font-family: Kiwi Maru;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.7em;
	text-align: left;

}
#product_top .product_detail .info dt {
	color: #B8B8B8;
	font-family: Murecho;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.83em;
	letter-spacing: 0.04em;
	text-align: left;	
	width: 20%;
}
#product_top .product_detail .info dd {
	color: #3C3C3C;
	font-family: Murecho;
	font-size: 14px;
	font-weight: 400;
	line-height: 2.1em;
	letter-spacing: 0.04em;
	text-align: left;	
	width: 80%;
}
#product_top .product_detail .total {
	border-bottom: 1px solid #E0F0F3;
	margin-bottom: 10px;
	padding: 10px 0;
}
#product_top .product_detail .total h4 {
	color: #3C3C3C;
	font-family: Kiwi Maru;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.7em;
	text-align: right;
}
#product_top .product_detail .total h4 span {
	font-family: Kiwi Maru;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.3em;
	margin: 0 4px;
}
#product_top .product_detail .total h4 small {
	font-size: 10px;
	font-weight: 300;
	line-height: 1.6em;
}
#product_top .product_detail .total h2 {
	color: #3C3C3C;
	font-family: Kiwi Maru;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.3em;
	text-align: right;
}
#product_top .product_detail .total h2 span {
	font-size: 40px;
	line-height: 1.2em;
	margin: 0 4px;
}
#product_top .product_detail .total h2 small {
	font-size: 10px;
	line-height: 1.6em;
}
#product_top .product_detail .button .btn a {
	display: block;
	margin-left: auto;
	margin-bottom: 10px;
	padding: 8px;
	width: 240px;
}
#product_top .product_detail .button .user_like {
	border-radius: 4px;
	border: 1px solid #B8B8B8;
	padding-left: 10px;
	margin-left: auto;
	width: 19%;

} 
#product_top .product_detail .button .btn a,
#product_top .product_detail .button .btn button {
	display: block;
	margin-left: auto;
	margin-bottom: 10px;
	padding: 8px;
	width: 240px;
}

/* detail */
#detail {
	margin-top: 40px;
}
#detail dl {
	margin-bottom: 4px;
}
#detail dt {
	color: #B8B8B8;
	font-family: Murecho;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.83em;
	letter-spacing: 0.04em;
	text-align: left;	
	width: 100%;
}
#detail dd {
	color: #3C3C3C;
	font-family: Murecho;
	font-size: 14px;
	font-weight: 400;
	line-height: 2.1em;
	letter-spacing: 0.04em;
	text-align: left;	
	width: 100%;
}
#detail p {color: #3C3C3C;
	font-family: Kiwi Maru;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.7em;
	text-align: left;
}

/*  768px  */
@media screen and (max-width: 768px) {

	#product_top {
		display: block;
	}
	#product_top .product_img {
		width: 100%;
	}
	#product_top .product_detail {
		width: 100%;
	}
	#product_top .product_detail dl {
		display: block;
	}
	#product_top .product_detail .color dl {
		display: flex !important;
	}
	#product_top .product_detail .tag {
		border-bottom: 0.256vw solid #EAEAEA;
		padding-bottom: 2.56vw;
	}
	#product_top .product_detail .tag span {
		border-radius: 2.56vw;
		font-size: 2.56vw;
		margin-left: 1.536vw;
		padding: 0 1.536vw 0 1.024vw;
	}
	#product_top .product_detail .name {
		border-bottom: unset;
		padding: 1.024vw 0;
	}
	#product_top .product_detail .name h4 {
		font-size: 5.12vw;
	}
	#product_top .product_detail .name h5 {
		font-size: 3.584vw;
	}
	#product_top .product_detail .name h5.second {
		border: 0.256vw solid #358CB6;
		font-size: 2.56vw;
		width: 100%;
		padding: 1.024vw;
	}
	#product_top .product_detail .color {
		padding: 2.56vw 0;
	}
	#product_top .product_detail .color dl dt {
		font-size: 3.584;
		width: 30%;
	}
	#product_top .product_detail .color dl dd { width: 70%;}
	#product_top .product_detail .color dl dd select {
		width: 100%;
	}
	#product_top .product_detail .info {
		border-bottom: 0.256vw solid #EAEAEA;
		padding-bottom: 5.12vw;
	}
	#detail .ttl_info,
	#product_top .product_detail .info .ttl_info {
		font-size: 3.584vw;
	}
	#product_top .product_detail .info dt {
		font-size: 3.072vw;
		width: 100%;
	}
	#product_top .product_detail .info dd {
		font-size: 3.584vw;
		width: 100%;
	}
	#product_top .product_detail .total {
		border-bottom: 0.256vw solid #EAEAEA;
		margin-bottom: 5.12vw;
		padding: 2.56vw 0;
	}
	#product_top .product_detail .total h4 {
		font-size: 2.56vw;
	}
	#product_top .product_detail .total h4 span {
		font-size: 5.12vw;
		margin: 0 1.024vw;
	}
	#product_top .product_detail .total h2 {
		font-size: 5.12vw;
	}
	#product_top .product_detail .total h2 span {
		font-size: 10.24vw;
		margin: 0 1.024vw;
	}
	#product_top .product_detail .total h2 small {
		font-size: 2.56vw;
	}
	#product_top .product_detail .button .btn a {
		margin-bottom: 2.56vw;
		padding: 2.048vw;
		width: 61.44vw;
	}
	#product_top .product_detail .button .user_like {
		border-radius: 1.024vw;
		border: 0.256vw solid #B8B8B8;
		padding-left: 2.56vw;
		margin-left: auto;
		width: 45%;
	
	} 
	
	/* detail */
	#detail {
		margin-top: 10.24vw;
	}
	#detail dl {
		margin-bottom: 1.024vw;
	}
	#detail dt {
		font-size: 3.072vw;
	}
	#detail dd {
		font-size: 3.584vw;
	}
	#detail p {
		font-size: 3.584vw;
		
	}

}


/* Swiper */
.swiper {
	width: 100%;
	height: 100%;
}
.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.swiper {
	width: 100%;
	height: 300px;
	margin-left: auto;
	margin-right: auto;
}
.swiper-slide {
	background-size: cover;
	background-position: center;
}
.mySwiper2 {
	height: 480px;
	width: 100%;
	margin-bottom: 4px;
}

.mySwiper {
	height: 20%;
	box-sizing: border-box;
	padding: 10px 0;
}
.mySwiper .swiper-slide {
	width: 10%;
	height: 48px;
	opacity: 0.4;
}
.mySwiper .swiper-slide-thumb-active {
	opacity: 1;
}
.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/*  768px  */
@media screen and (max-width: 768px) {

	.mySwiper2 {
		height: 89.6vw;
		margin-bottom: 1.024vw;
	}
	
	.mySwiper {
		padding: 2.56vw 0;
	}
	.mySwiper .swiper-wrapper {
		width: 100%;
		display: flex;
		display: -webkit-flex;
		flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
	}
	.mySwiper .swiper-slide {
		width: 14% !important;
		height: 12.288vw;
		opacity: 0.4;
	}
	.mySwiper .swiper-slide-thumb-active {
		opacity: 1;
	}

}
