@charset "utf-8";
/* Productlist CSS
-----------------------------*/
.pagetitle::before {
	background-image: url("../img/product/bg-pagetitle.jpg");
}

/* catlist */
.catlist {
	position: relative;
	overflow: hidden;
}
.catlist .nav-cat {
	overflow-x: auto;
	padding: 10px 0;
	position: relative;
}


.catlist .nav-cat::-webkit-scrollbar {
  height: 5px;
}
.catlist .nav-cat::-webkit-scrollbar-track {
  background: #ededed;
}

.catlist .nav-cat::-webkit-scrollbar-thumb {
  background: #9d8217;
  border-radius: 2.5px;
}

.catlist .nav-cat .list-productcat {
	display: flex;
	justify-content: center;
	/*border-bottom: 1px solid rgba(0,0,0,0.15);*/
}

.catlist .nav-cat .list-productcat li {
	position: relative;
	border-bottom: 1px solid rgba(0,0,0,0.15);
}

.catlist .nav-cat .list-productcat li > a {
    display: inline-block;
	padding: 15px 20px;
	white-space: nowrap;
}

.catlist .nav-cat .list-productcat li.active {
	font-weight: bold;
}

.catlist .nav-cat .list-productcat li.active::after {
	content: '';
	position: absolute;
	bottom: -1px;
	width: 50px;
	left: 50%;
	transform: translateX(-50%);
	height: 1px;
	background: #000;
}

@media (max-width: 1199px) {
	.catlist .nav-cat .list-productcat {
		justify-content: flex-start;
	}
}

/* list-prdct */
.list-prdct {
}
.list-prdct .sbox-prdctG {
	width: 32.333%;
	padding-left: 2.5%;
	padding-right: 0.5%;
}
.sbox-prdctG > a {
	display: block;
}
.list-prdct .sbox-prdctG .inner-prdctG {
	display: flex;
}



.list-prdct .sbox-prdctG .inner-prdctG .prdctG-infobox {
	padding-left: 35px;
}

.sbox-prdctG .prdctG-img {
	position: relative;
}

.sbox-prdctG .prdctG-img::before {
	content:"";
	position: absolute;
	width: calc(100% - 50px);
	height: 92%;
	left: 0;
	top: 0;
	z-index: -1;
}

.prdctG-infobox .prdctG-info .namebox {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.prdctG-infobox .prdctG-info .namebox .arrow {
	position: relative;
	width: 43px;
	height: 43px;
	display: inline-block;
}

.prdctG-infobox .prdctG-info .namebox .arrow::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: rgba(0,0,0,0.15);
	transition: all ease 0.28s;
}
.prdctG-infobox .prdctG-info .namebox .arrow::after {
    position: absolute;
    content: '';
    z-index: 1;
    transition: all 0.5s;
    top: 50%;
    left: 50%;
    width: 17px;
    height: 7px;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    transform: skew(48deg) translateX(-5px) translateY(-6px);
}
.sbox-prdctG a:hover .prdctG-infobox .prdctG-info .namebox .arrow::before {
	transform: scale(1.3);
}
.sbox-prdctG .name-prdctcat {
	width: 30px;
    position: absolute;
}

.sbox-prdctG .name-prdctcat .txt-en {
/*	padding-bottom: 15px;*/
	position: relative;
	line-height: 30px;
/*	border-bottom: 1px solid #000;*/
}

.sbox-prdctG .name-prdctcat .txt-en::after {
	/*content: '';
	position: absolute;
	bottom: 0;
	left: -10px;
	height: 1px;
	width: 20px;
	background: #444;*/
}

.sbox-prdctG .name-prdctcat .txt-ja {
	padding-top: 15px;
}
.prdctG-info .namebox .prdctG-name {
	flex: 1;
	padding-right: 5px;
}
.prdctG-info .namebox .prdctG-name > span {
	display: block;
	line-height: 1.5;
	color: #000;
}
.prdctG-info .namebox .prdctG-name.type1 .name-en {
	line-height: 1.15;
	word-break: break-all;
}
.prdctG-info .namebox .prdctG-name .name-en {
	letter-spacing: 0;
	word-break: break-all;
}

.prdctG-info .prdctG-txt {
	padding-right: 3.5%;
}
.prdctG-info .prdctG-txt .stxt {
	letter-spacing: 0.005em;
}
.prdctG-info .prdctG-txt .prdctG-catch {
	line-height: 1.5;
}


/* grade */
.sbox-prdctG.bg-1 .prdctG-img::before {
	background: rgb(96,185,165);
	background: linear-gradient(100deg, rgba(96,185,165,1) 0%, rgba(55,143,131,1) 100%);	
}
.sbox-prdctG.bg-2 .prdctG-img::before {
	background: rgb(140,169,63);
	background: linear-gradient(100deg, rgba(140,169,63,1) 0%, rgba(50,94,5,1) 100%);
}
.sbox-prdctG.bg-3 .prdctG-img::before {
	background: rgb(218,216,201);
	background: linear-gradient(100deg, rgba(218,216,201,1) 0%, rgba(176,174,151,1) 100%);
}
.sbox-prdctG.bg-4 .prdctG-img::before {
	background: rgb(44,103,175);
	background: linear-gradient(100deg, rgba(44,103,175,1) 0%, rgba(2,29,59,1) 100%);
}

.sbox-prdctG.bg-5 .prdctG-img::before,
.sbox-prdctG.bg-6 .prdctG-img::before {
	border: 4px solid #dcdcdc;
	height: calc(92% + 4px);
}
.sbox-prdctG.bg-5 .prdctG-img span,
.sbox-prdctG.bg-6 .prdctG-img span {
	
}

.sbox-prdctG.bg-7 .prdctG-img::before,
.sbox-prdctG.bg-8 .prdctG-img::before {
	height: calc(92% + 8px);
}

.sbox-prdctG.bg-7 .prdctG-img span,
.sbox-prdctG.bg-8 .prdctG-img span {
	display: block;
	width: calc(100% - 58px);
    height: calc(100% - 8px);
	position: relative;
	border: 4px solid #dcdcdc;
    margin-bottom: 20px;
}
.sbox-prdctG.bg-5 .prdctG-img span img,
.sbox-prdctG.bg-6 .prdctG-img span img,
.sbox-prdctG.bg-7 .prdctG-img span img,
.sbox-prdctG.bg-8 .prdctG-img span img {
	position: relative;
}

@media (max-width: 1280px) {
	.list-prdct .sbox-prdctG {
	    width: 47%;
	}
}


@media (max-width: 767px) {
	.list-prdct .sbox-prdctG {
	    width: 100%;
		padding-left: 3.5%;
   	 	padding-right: 4.5%;
	}
}

@media (max-width: 480px) {
	
	.list-prdct .sbox-prdctG {
		padding-left: 2%;
   	 	padding-right: 3.5%;
	}
	.sbox-prdctG .prdctG-img::before {
		width: calc(100% - 25px);
	}
	.prdctG-infobox .prdctG-info .namebox .arrow {
		margin-right: 3.5%;
	}
	.sbox-prdctG.bg-5 .prdctG-img::before, 
	.sbox-prdctG.bg-6 .prdctG-img::before,
	.sbox-prdctG.bg-7 .prdctG-img span, 
	.sbox-prdctG.bg-8 .prdctG-img span {
		width: calc(100% - 8px);
	}
}