/* Products List ============================================================== */
.product-list figure {
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: center;
  cursor: pointer;
  height: 0;
  padding-bottom: 134%;
}
.product-list figure .img-center {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.product-list figure img {
  max-height: 100%;
  opacity: 1;
  transition: opacity 0.35s, transform 0.35s;
  transform: translate3d(0px, 0, 0);
}
.product-list figure:before, .product-list figure:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  opacity: 0;
  z-index: 1;
  transition: all 0.5s ease 0s;
}
.product-list figure:before {
  bottom: 5%;
  left: 5%;
  border-bottom: 2px solid #5B872F;
  border-left: 2px solid #5B872F;
}
.product-list figure:after {
  top: 5%;
  right: 5%;
  border-top: 2px solid #5B872F;
  border-right: 2px solid #5B872F;
}
.product-list figure:hover img {
  opacity: 0.75;
  transform: scale(1.1);
}
.product-list figure:hover:before, .product-list figure:hover:after {
  opacity: 1;
  width: 100%;
  height: 100%;
}
.product-list figcaption h3 {
  padding: 10px;
  word-spacing: -0.15em;
  font-size: 1.15rem;
  font-weight: 500;
  color: #222;
}

/* Product Detail ============================================================ */
.product-wrap {
  margin: 30px 0;
}
.product-wrap h1 {
  width: 100%;
  margin-bottom: 2%;
  font-size: 2rem;
  color: #323d47;
  font-weight: 400;
  line-height: 1.25em;
}
.product-wrap h1:after {
  content: "";
  display: block;
  width: 80%;
  height: 2px;
  margin: 10px 0;
  background: #5B872F;
}

.product-wrap-left {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.product-wrap-left > ul {
  padding-left: 0;
}

.pro-detail-pic {
  position: relative;
  overflow: hidden;
  width: 95%;
  margin: 0 auto;
  margin-top: 10px;
  height: 0;
  padding-bottom: 100%;
}
.pro-detail-pic img {
  max-height: 100%;
}
.pro-detail-pic .img-center a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.product-info {
  padding: 1em 0.5em;
  border-bottom: 1px solid #d6d6d6;
}
.product-info a:hover {
  color: #007bff;
}
.product-button {
  padding-left: 0;
}

.upload-file-zone {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.upload-file {
  margin: 0 30px 10px 0;
}

ol.product-button li {
  width: auto;
  display: inline-block;
  list-style-type: none;
  margin: 5% auto 2% 5px;
}
ol.product-button li img {
  width: 20px;
}

.btn-inquiry {
  color: #fff !important;
  font-weight: 400;
  background: #5B872F;
  border: solid 1px #5B872F;
}
.btn-inquiry:hover {
  color: #fff;
  background: #E7A048;
  border: solid 1px #E7A048;
}

.btn-border {
  background-color: transparent;
  border: 1px solid #222;
  color: #222;
  font-weight: 500;
}
.btn-border:hover {
  color: #999;
  background-color: #fff;
  border: 1px solid #999;
}
.btn-border:hover img:nth-child(1){
  filter: grayscale(1) brightness(5);
}
.btn.focus, .btn:focus{
  box-shadow: none;
}

.social-icons img {
  width: auto;
}

.resp-tab-content p, .resp-tab-content li {
  font-size: 1rem;
  line-height: 2rem;
}
.resp-tab-content a:hover {
  color: #007bff;
}
.resp-tab-content ul, .resp-tab-content ol {
  padding-left: 20px;
}

.related-product-title {
  margin-top: 30px;
  font-size: 1.5rem;
  font-weight: 700;
}
.related-product-title:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin: 10px 0;
  background: #5B872F;
}

.related-product-wrap {
  margin: 30px auto 0 auto;
  padding: 0 30px 10px 30px;
  max-width: 1200px;
}

.related-list {
  padding-left: 0;
}
.related-list figure {
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
}
.related-list figure .img-center {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.related-list li {
  width: calc(100%/4 - 19px);
  margin-right: 5px;
  margin-bottom: 5%;
  display: inline-block;
  text-align: center;
}

.related-list li h3 {
  padding: 20px;
  word-spacing: -0.15em;
  font-size: 0.9rem;
  font-weight: 400;
  color: #000;
}

.related-list li img {
  max-height: 100%;
}

.push-h{
  padding-top: 100px;
}

@media only screen and (max-width: 1070px) {
  .push-h {
    padding-top: 80px;
  }
}