﻿/**************************************
product
**************************************/
#productListSection{
	width: 100%;
  padding-bottom: 0;
  overflow: hidden;
}

.ledeBox{
  display: block;
  width: 100%;
  max-width: 1880px;
  padding: 2em 0;
  margin: 0 auto;
  text-align: center !important;
  font-size: 1.5rem;
  line-height: 2;
}

.ledeBox p{
display: block;
width: 100%;
margin: 0 auto;
text-align: center !important;
font-weight: bold;
}


#productListSection > .categoryTab{
  display: block;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

#productListSection > .categoryTab > ul{
  display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: center;
  gap: 0 0.4rem;
  width: 100%;
}

#productListSection > .categoryTab > ul > li{
  display: block;
  flex-shrink: 1;
  width: 100%;
  max-width: 26.4rem;
}

#productListSection > .categoryTab > ul > li > a{
  display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
  width: 100%;
  height: 4.8rem;
  background: #D0112B;
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s ease,color 0.3s ease;
}

#productListSection > .categoryTab > ul > li:not(.current) > a:hover{
  background: #FF1D3C;
}

#productListSection > .categoryTab > ul > li.current > a{
  background: #F8F8F8;
  color: #D0112B;
  cursor: inherit;
  pointer-events: none;
}

#productListSection > .categoryTab > ul > li > a > span{
  display: inline-flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
  height: 100%;
  position: relative;
}
#productListSection > .categoryTab > ul > li > a > span::after{
  content: '';
  display: block;
  width: 0;
  height: 0.2rem;
  background: #D0112B;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

#productListSection > .categoryTab > ul > li.current > a > span::after{
  width: 100%;
}


/**************************************
categorySection
**************************************/
#productListSection .productList{
  display: block;
  width: 100%;
  padding: 10.4rem 40px;
  background: #F8F8F8;
}

#productListSection .productList > ul{
  display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: flex-start;
  gap: 2rem 1.85185185185185%;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

#productListSection .productList > ul > li{
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  height: inherit;
  width: 23.61111111111111%;
  background: #FFFFFF;
}

#productListSection .productList > ul.sortMode > li:not(.current){display: none;}

#productListSection .productList > ul > li > a{
  display: block;
  width: 100%;
  text-decoration: none;
  color: #111111;
  transition: color 0.3s ease;
  padding-bottom: 1em;
}
#productListSection .productList > ul > li > a:hover{color: #D0112B;}

#productListSection .productList > ul > li figure{
  display: block;
  width: 100%;
  /*height: 36.4rem;*/
  padding-bottom: 100%;
  background: #FFFFFF;
  overflow: hidden;
  position: relative;
}

#productListSection .productList > ul > li figure > figcaption{
  display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
  width: 4.2rem;
  height: 2.6rem;
  background: url("./icon_new.svg") center center no-repeat;
  background-size: 2.6rem auto;
  border: 2px solid #D0112B;
  position: absolute;
  left: 0.4rem;
  top: 0.4rem;
  z-index: 2;
}

#productListSection .productList > ul > li figure > img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  position: absolute;
  left: 0;
  top: 0;
  transition: transform 0.3s ease;
}

#productListSection .productList > ul > li > a > figure > img{ }
#productListSection .productList > ul > li > a:hover > figure > img{ transform: scale(1.05);}

/** color  ***/
#productListSection .productList > ul > li ul.colorTips{
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.5rem 0.5rem;
  width: 100%;
  padding: 1.5rem 2.4rem 2.4rem;
  background: #FFFFFF;
  box-sizing: border-box;
}

#productListSection .productList > ul > li ul.colorTips > li{
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  width: 1.1rem;
  height: 1.1rem;
  overflow: hidden;
}
#productListSection .productList > ul > li ul.colorTips > li.white{border: 1px solid #111111;}

#productListSection .productList > ul > li ul.colorTips > li > span{
  display: block;
  flex-shrink: 1;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
#productListSection .productList > ul > li ul.colorTips > li > span.white{border: 1px solid #111111;}

#productListSection .productList > ul > li .name{
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  width: 100%;
  padding: 0 2.4rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  min-height: 2.8em;
  
}

#productListSection .productList > ul > li .price{
  display: block;
  padding: 0 2.4rem;
  margin-bottom: 2rem;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: left;
}
#productListSection .productList > ul > li .price > span{
  font-size: 1rem;
  font-weight: 400;
  padding-left: 0.5em;
}

#productListSection .productList > ul > li .cap{
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  width: 100%;
  padding: 0 2.4rem 0 !important;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.7;
}

#productListSection .productList > ul > li ul.tags{
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1rem 1rem;
  padding: 2rem 2.4rem 3rem;
  font-size: 1rem;
  text-align: left;
}

#productListSection .productList > ul > li ul.tags > li{
  color: #D0112B;
  text-decoration: underline;
}

#productListSection .productList > ul > li ul.tags > li > a{
  color: #D0112B;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
#productListSection .productList > ul > li ul.tags > li > a:hover{opacity: .6;}





