/* Box -------------------------- */
.box {
  position: relative;
}

.box-head {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  background-color: rgba(0, 0, 0, .5);
}

.box-img {
  max-width: 100%;
  height: auto;
}

.box-hover:hover .box-head {
  display: none;
}

/* Commodity -------------------------- */
.commodity {
  display: flex;
  flex-direction: row-reverse;
}

.commodity-head, .commodity-body {
  width: 50%;
}

.commodity-head {
  margin-left: 2rem;
}

.commodity-title {
  display: flex;
  align-items: baseline;
}

.commodity-cht {
  color: #bc938d;
  font-size: 1.4rem;
}

.commodity-en {
  color: #999;
  margin-left: .5rem;
}

.commodity-img {
  max-width: 100%;
  height: auto;
}

.commodity-thumbnail {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
  margin-left: -.5rem;
  margin-right: -.5rem;
}

.commodity-thumbnail .commodity-img {
  max-width: 25%;
  padding-left: .5rem;
  padding-right: .5rem;
  box-sizing: border-box;
}

.commodity-thumbnail .commodity-img:hover {
  opacity: .7;
  cursor: pointer;
}

.commodity-desc {
  line-height: 1.5;
}

.commodity-desc+.commodity-desc {
  margin-top: 1rem;
}

.commodity-li {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: solid 1px #f2e4e2;
}

.commodity-cost, .commodity-sale {
  display: inline;
}

.commodity-cost {
  margin-left: 0.5rem;
  color: #999;
}

.commodity-sale {
  padding: .3rem 1rem;
  color: #fff;
  background-color: #cd8c96;
}

/* tab --------------------------------- */
.tab-ul {
  display: flex;
}

.tab-li {
  margin-right: -1px;
  padding: .7rem 1rem;
  border: solid 1px transparent;
  background-color: #f6f6f6;
  cursor: pointer;
}

.tab-li-active {
  z-index: 2;
  color: #bc938d;
  border: solid 1px #f2e4e2;
  border-bottom: none;
  background-color: #fff;
}

.tab-container {
  position: relative;
  z-index: 1;
  margin-top: -1px;
  padding: .7rem 1rem;
  border: solid 1px #f2e4e2;

}

.tab-content {
  display: none;
}

.tab-content:first-child {
  display: block;
}

.tab-desc {
  line-height: 1.5;
}

.tab-desc + .tab-desc {
  margin-top: 1rem;
}

.tab-content ul, .tab-content p {
  line-height: 1.7;
}

.tab-content p + p,
.tab-content p + ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.tab-content ul {
  list-style-type: disc;
  padding-left: 1.2rem;
}

.tab-content li::marker {
  color: #ccc;
}

@media screen and (max-width: 480px) {
  .box-title {
    font-size: 1.3rem;
  }

  .commodity {
    flex-direction: column-reverse;
  }

  .commodity-head,
  .commodity-body {
    width: 100%;
  }

  .commodity-head {
    margin-left: 0;
    margin-top: 2rem;
  }

  .tab-li {
    line-height: 1.3;
  }
}