.tag-popular {
  margin: 15px 0 45px;
  padding: 30px 24px 30px 24px;
  border-top: 1px solid #f1f0f0;
  background: #fff;
}

.tag-popular-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}

.tag-popular-list-title {
  font-weight: bold;
  margin: 0 0 20px;
  color: #7695b3;
}

.tag-popular-list-item {
  position: relative;
  display: block;
  width: calc((100% - (15px * 5)) / 6);
  margin: 0;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

.tag-popular-list-item:hover {
  color: #7695b3;
}

.tag-popular-list-item:hover img {
  opacity: .8;
}

.tag-popular-list-item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.tag-popular-list-item .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  text-align: left;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.tag-popular-list-item .content .title {
  display: block;
  width: 100%;
}

.tag-popular-list-item .content .brand {
  font-size: 10px;
  font-weight: 600;
  display: block;
  width: 100%;
  margin-bottom: 0.25em;
  white-space: pre-wrap;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.tag-popular-list-item .content .name {
  font-size: 14px;
  display: block;
  width: 100%;
  white-space: pre-wrap;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.tag-popular-list-item .content .price {
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-top: 0.5em;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.tag-popular-list-item .thumbnail {
  display: block;
  width: 100%;
  margin: 0 0 5%;
  -webkit-transition: all .4s ease 0s;
  transition: all .4s ease 0s;
}

@media screen and (min-width: 401px) {
  .-twoColumnPc .tag-popular-list-item {
    width: calc((100% - 15px) / 2);
  }

  .-threeColumnPc .tag-popular-list-item {
    width: calc((100% - (15px * 2)) / 3);
  }
}

@media screen and (max-width: 400px) {
  .tag-popular {
    margin: 15px 0 45px;
    padding: 30px 10px 10px;
  }

  .tag-popular-list {
    margin-top: 30px;
  }

  .tag-popular-list-item {
    width: 100%;
    margin-bottom: 15px;
  }

  .-twoColumnSp .tag-popular-list-item {
    width: calc((100% - 15px) / 2);
  }

  .-threeColumnSp .tag-popular-list-item {
    width: calc((100% - (15px * 2)) / 3);
  }

  .-spBorder .tag-popular-list-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .-sideBySide .tag-popular-list-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .-spBorder .tag-popular-list-item::before {
    position: absolute;
    bottom: calc(100% + 30px);
    left: 0;
    display: block;
    width: 100%;
    content: '';
    border-top: 1px solid #ddd;
  }

  .-sideBySide .tag-popular-list-item::before {
    bottom: calc(100% + 15px);
  }

  .-sideBySide .tag-popular-list-item-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .-sideBySide .tag-popular-list-item .content {
    width: 70%;
    padding-left: 1em;
  }

  .-sideBySide .tag-popular-list-item .thumbnail {
    width: 30%;
    margin-bottom: 0;
  }
}