.ecommerce-box {
	display: block;
    width: 100%;
    height: auto;
    position: relative;
    text-align: center;
}

.ecommerce-list {
	display: flex;
	max-width: 500px;
	margin: auto;
}

/* --------------------------------
  top
-------------------------------- */
.top-products {
  padding-right: calc(55px/2);
  padding-left: calc(55px/2);
  background: linear-gradient(to top, #0083d6, #48bbe1 30%, #68c0df 51%, #fff 86%, #fff 100%);
}
@media (max-width: 767.98px) {
  .top-products {
    margin-right: calc(55px/2*-1);
    margin-left: calc(55px/2*-1);
  }
}
@media (min-width: 768px) {
  .top-products {
    margin-top: 60px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 32px;
    padding-left: 32px;
    width: 80%;
    background: linear-gradient(to top, #0083d6, #48bbe1 20%, #68c0df 40%, #fff 70%, #fff 100%);
  }
}

.top-products_table {
  border: 1px solid #fff;
  background: #fff;
}
@media (min-width: 768px) {
  .top-products_table {
    display: flex;
    border-right-width: 24px;
    border-left-width: 24px;
  }
}

.top-products_table_row {
  display: flex;
}

@media (max-width: 767.98px) {
  .top-products_table_category {
    flex: 1;
  }
  .top-products_table_category:not(:first-child) {
    position: relative;
  }
  .top-products_table_category:not(:first-child)::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background: #e4e4e4;
  }
}

@media (min-width: 768px) {
  .top-products_table_row:not(:first-child) .top-products_table_category {
    position: relative;
  }
  .top-products_table_row:not(:first-child) .top-products_table_category::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 2px;
    background: #e4e4e4;
  }
}

.top-products_table_header {
  display: flex;
  padding: 3px 0;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  /*font-weight: bold;*/
  line-height: 1.28571; 

  justify-content: center;
  align-items: center;
}
.top-products_table_category-gold .top-products_table_header {
  background: #cdab71;
  height: 70px;
}
.top-products_table_category-mild .top-products_table_header {
  background: #91cde2;
}
.top-products_table_category-whitening .top-products_table_header {
  background: #c5c9c9;
}
.top-products_table_category-bb .top-products_table_header {
  background: #c3aa91;
}
@media (min-width: 768px) {
  .top-products_table_header {
    padding: 6px 0;
    font-size: 1.4rem;
  }
}

.top-products_table_body {
  display: flex;
}

.top-products_table_item {
  flex: 1;
}
.top-products_table_item:not(:first-child) {
  position: relative;
}
.top-products_table_item:not(:first-child)::before {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 0;
  width: 1px;
  background: #e4e4e4;
}
@media (min-width: 768px) {
  .top-products_table_item:not(:first-child)::before {
    width: 2px;
  }
}
.top-products_table_item a {
  display: block;
  position: relative;
  padding: 8px 0 24px;
  text-decoration: none; 
  color: inherit;
}
.top-products_table_item a::after {
  content: "";
  display: block;
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 30px;
  height: 6px;
  background: url(../images/icon_arrow_bk.svg) no-repeat center;
  background-size: contain;
}
@media (min-width: 768px) {
  .top-products_table_item {
    width: calc(1120px/8); 

    flex-basis: calc(1120px/8);
  }
  .top-products_table_item a {
    padding: 12px 0 32px;
  }
  .top-products_table_item a::after {
    right: 18px;
    bottom: 22px;
  }
}

.top-products_table_heading {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.33333;
}
@media screen and (max-width: 374px) {
  .top-products_table_heading {
    font-size: 1.1rem;
  }
}
@media (min-width: 768px) {
  .top-products_table_heading {
    font-size: 1rem;
    line-height: 1.30769;
  }
}

.top-products_table_img {
  position: relative;
  margin-top: 10px;
  height: 70px;
  text-align: center;
}
.top-products_table_img img {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 35px;
  transition: 0.5s -webkit-filter;
  transition: 0.5s filter;
  transition: 0.5s filter, 0.5s -webkit-filter;
}
a:hover .top-products_table_img img {
  -webkit-filter: brightness(120%);
          filter: brightness(120%);
}
@media (min-width: 768px) {
  .top-products_table_img {
    margin-top: 3px; 
    height: 160px;
  }
  .top-products_table_img img {
    width: 80px;
  }
}
@media (max-width: 767.98px) {
  .top-products_table_item-mild_pink .top-products_table_img,
  .top-products_table_item-mild_blue .top-products_table_img {
    height: 68px;
  }
}
.top-products_table_item-bb .top-products_table_img img {
  width: 40px;
}
@media (min-width: 768px) {
  .top-products_table_item-bb .top-products_table_img img {
    width: 88px;
  }
}

.top-products_table_item-pact .top-products_table_img img {
  width: 60px;
}
@media (min-width: 768px) {
  .top-products_table_item-pact .top-products_table_img img {
    width: 112px;
  }
}

.top-products_note {
  padding: 8px 0 14px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .top-products_note {
    text-align: right;
  }
}