/* Scss Document */
.product-item {
  border-bottom: solid 1px #E2E2E2;
  position: relative;
}
.product-head {
  margin-bottom: 2em;
}
.product-detail {
  position: relative;
}
.product-detail .cat {
  margin-bottom: 0.75em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.product-detail .cat li {
  margin: 0 0.5em 0.5em 0;
  padding: 0.2em 1em;
  color: #fff;
  font-weight: bold;
  background: #4095C7;
}
.product-detail .cat li.union {
  border: solid 1px #d8d8d8;
  color: rgba(0, 0, 0, 0.85);
  background: #f5f5f5;
}
.product-detail .name {
  font-size: 2.4rem;
  font-weight: bold;
}
.product-detail .date {
  margin-bottom: 1.5em;
  color: rgba(0, 0, 0, 0.5);
  font-weight: bold;
  letter-spacing: 0;
}
.product-detail h3 {
  margin: 1.5em 0 0.5em;
}
.product-detail .price {
  margin-top: 1.5em;
  line-height: 1;
}
.product-detail .price em {
  color: #e51c24;
  font-weight: middle;
  font-style: normal;
  font-size: 3.6rem;
}
.product-detail .price-info {
  margin-bottom: 0.25em;
  font-weight: bold;
}
.product-table {
  width: 100%;
}
.product-table th, .product-table td {
  padding: 0.25em 0.5em;
  text-align: left;
  font-size: 1.5rem;
}
.product-table th {
  background: #f5f5f5;
  width: 25%;
}
.product-table td {
  width: 75%;
  letter-spacing: 0;
}
.product-table .map-link {
  display: inline-block;
  font-weight: bold;
  margin-left: 0.5em;
  color: #163b70;
}
.product-table .map-link img {
  margin-right: 0.25em;
  vertical-align: middle;
  width: 1em;
}
.product-comment p {
  margin-bottom: 1.5em;
  line-height: 1.8;
}
.product-comment p:last-child {
  margin-bottom: 0;
}

@media only screen and (min-width: 601px) {
  .product-item {
    margin-bottom: 3em;
    padding-bottom: 3em;
    border-bottom: solid 1px #E2E2E2;
  }
  .product-head {
    -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-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .product-img {
    width: 47.8%;
  }
  .product-detail {
    width: 48.34%;
  }
  .product-detail .cat li {
    font-size: 1.3rem;
  }
  .product-comment {
    margin-bottom: 3em;
  }
}
@media only screen and (max-width: 600px) {
  .product-item {
    margin-bottom: 2em;
    padding-bottom: 2em;
  }
  .product-img {
    width: 100%;
  }
  .product-detail {
    margin-bottom: 1em;
    width: 100%;
  }
  .product-detail .cat li {
    font-size: 1.2rem;
  }
  .product-detail .name {
    font-size: 2rem;
    font-weight: bold;
  }
  .product-comment {
    margin-bottom: 2em;
  }
}