﻿/**************************************
product
**************************************/
#productListSection{
	width: 100%;
  padding-bottom: 0;
  overflow: hidden;
}

#productListSection > .ledeBox{
  display: block;
  width: 100%;
  padding: 3rem 2rem 4rem;
  margin: 0 auto;
  text-align: left;
  font-size: 1.3rem;
  line-height: 2;
}


#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: flex-start;
  gap: 0.2rem 0.2rem;
  width: 100%;
}

#productListSection > .categoryTab > ul > li{
  display: block;
  flex-shrink: 1;
  width: 100%;
}

#productListSection > .categoryTab > ul > li > a{
  display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
  width: 100%;
  height: 4.2rem;
  padding: 0 1rem;
  background: #D0112B;
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s ease,color 0.3s ease;
}

#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: 4rem 2rem;
  background: #F8F8F8;
}

#productListSection .productList > ul{
  display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: flex-start;
  gap: 2rem 4%;
  width: 100%;
  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: 48%;
  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: opacity 0.3s ease;
}

#productListSection .productList > ul > li figure{
  display: block;
  width: 100%;
  /*padding-bottom: 142.7450980392157%;*/
  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: 3.2rem;
  height: 2.0rem;
  background: url("./icon_new.svg") center center no-repeat;
  background-size: 2rem 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;
}

#productListSection .productList > ul > li > a > figure > img{ transition: opacity 0.3s ease;}
#productListSection .productList > ul > li > a > figure > img:not(:nth-last-of-type(1)):nth-of-type(1){ opacity: 0; z-index: 1;}

/** color  ***/
#productListSection .productList > ul > li ul.colorTips{
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.3rem 0.3rem;
  width: 100%;
  padding: 0.5rem 1.5rem 1.5rem;
  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.0rem;
  height: 1.0rem;
  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 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  min-height: 2.24em;
}

#productListSection .productList > ul > li .price{
  display: block;
  padding: 0 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  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 1.5rem;
  font-size: 1.1rem;
  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 1.5rem 2rem;
  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;
}





