@charset'utf-8';


#all-priducts{
  align-content: center
}

#all-products .product-wrapper{
  margin: 0 auto;
  column-count: 3;
  gap:0;
  max-width: 1000px;
  
}
#all-products .product-wrapper>.block{
  display: block;
  width: 100%;
  padding: .6em;
}
#all-products .product-wrapper .cosme{
  break-inside: avoid;
}
#all-products .product-wrapper>.block h3{
  border-bottom: dotted 1px #333333;
  font-size: 1em;
  margin-bottom: .2em;
}
#all-products .product-wrapper>.block>ul {
  display: block;
  width: 100%;
  padding: .4em;
}

#all-products .product-wrapper>.block>ul>li {
margin: .2em;
  padding: 0 0 0 20px;
  display: block;
  background-color: #f6f6f6;
  max-width: 100%;
  
  }

#all-products .product-wrapper>.block>ul>li>a>p {
  position: relative;
  line-height: 2.4em;
  font-size: .8em;
  }
#all-products .product-wrapper>.block>ul>li span {
  font-size: .6em;
  line-height: .2em;
  }
#all-products .product-wrapper>.block>ul>li>a>p::after {
  position: absolute;
  font-size: .8em;
  content:"〉";
    top: 0;
    right: 1%;
  
  }
#all-products .product-wrapper>.block>ul>li>dl>a>dt {
  font-size: .8em;
  }
#all-products .product-wrapper>.block>ul>li>dl>a>dd {
  position: relative;
  padding: 0 0 0 20px;
  margin: .1em;
  line-height: 2.4em;
  display: block;
  background-color: #f6f6f6;
  font-size: .7em;
  max-width: 100%;
  }
#all-products .product-wrapper>.block>ul>li>dl>a>dd::after {
  position: absolute;
  font-size: .8em;
  content:"〉";
  top: 0;
  right: .5em;
  }

@media screen and (max-width:1000px) {
  #all-products .product-wrapper{
  column-count: 2;
  }}

@media screen and (max-width:650px) {
  #all-products .product-wrapper{
  column-count: 1;
}
}  


#to-top {
    position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
 bottom: 3%;
  right: 3%;
  z-index: 20;
  background-color: #999999;
  opacity: 0;
  visibility: hidden;
  margin: 0 auto;
   padding: 15px;
  transition: 0.4s;
}

@media (min-width: 700px) {
  #to-top {
    width: 80px;
    height: 80px;
   padding: 20px;
    opacity: 0;
    visibility: hidden;
   transition: 0.4s;
   }
}
#to-top a {
  color: #fff;
  font-size: 3em;
   transition: 0.4s;
}
#to-top.fadeUp {
  visibility: visible;
  opacity: 0.9;
  display: block;
}
