@charset "utf-8";
/*---------------------- Product ------------------------*/
#product {
  background-color: rgba(100, 200, 230, 0.3);
}
#product h1 {
  font-family: 'Oswald', sans-serif;
  text-align: center;
  background: url(../images/main_banner.jpg) no-repeat center center;
  background-size: cover;
  font-size: 3em;
  color: #FFFFFF;
  padding: 150px 0px;
}
#product ul {
  max-width: 900px;
  margin: 0 auto;
}
#product li {
  list-style-type: none;
  background-color: #FFF;
  padding: 50px 20px;
  text-align: center;
  box-sizing: border-box;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
#product li a {
  text-decoration: none;
}
#product li .photo {
  padding: 0 40px;
}
#product li .photo img {
  width: 100%;
}
#product li h2 {
  margin: 30px 0;
  font-size: 30px;
  font-weight: 700;
}
#product li p {
  line-height: 1.5;
}
#product li .detailBtn {
  display: inline-block;
  background-color: #64C8E6;
  color: #fff;
  text-decoration: none;
  padding: 15px 50px 15px 40px;
  position: relative;
  margin: 35px 0 0;
}
#product li .detailBtn::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  #product ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 80px 0;
  }
  #product li {
    width: calc((100% - 60px) / 2);
    margin-right: 60px;
  }
  #product li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  #product h1 {
    font-size: 2em;
    padding: 56px 0px;
  }
  #product ul {
    padding: 30px 20px 1px;
  }
  #product li {
    padding: 30px 10px;
    margin: 0 0 30px;
  }
  #product li .photo {
    padding: 0 35px;
  }
  #product li h2 {
    margin: 20px 0;
  }
  #product li .detailBtn {
    margin: 20px 0 0;
  }
}