main{
}
main section{
  height: 100vh;
  box-sizing: border-box;
  min-height: 600px;
}
section#product {
  max-width: 1645px;
  margin: 0 auto;
  background-color: white;
  position: relative;
}
section#product .wrap {
  
  flex-direction: row-reverse;
  gap: 40px;
  width: 100%;
}
section#product .wrap h2 {
  
}
section#product .wrap ul.flex {
  width: calc(100% / 2);
  flex-wrap: wrap;
  padding-right: 60px;
  padding-top: 90px;
}
section#product .wrap ul.flex li {
  width: 360px;
  height: 360px;
}
section#product .wrap ul li:first-child{
  
  /*! background-image: url(../img/prod1.png); */
  /*! background-repeat: no-repeat; */
  /*! background-position: right bottom; */
  /*! background-size: 37%; */
}
section#product .wrap ul li a {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 30px;
  box-sizing: border-box;
  transition: box-shadow 0.5s;
}
section#product .wrap ul li a:hover {
  box-shadow: 0px 0px 15px #ccc;
}
section#product .wrap ul li:nth-child(1) a::after{
  content: "";
  background-image: url(../img/prod1.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  width: 120px;
  height: 180px;
  display: inline-block;
}
section#product .wrap ul li:nth-child(2) a::after{
  content: "";
  background-image: url(../img/prod2.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  width: 120px;
  height: 180px;
  display: inline-block;
}
section#product .wrap ul li:nth-child(3) a::after{
  content: "";
  background-image: url(../img/prod3.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  width: 120px;
  height: 180px;
  display: inline-block;
}
section#product .wrap ul li a h3 {
  width: 100%;
  font-weight: bold;
}
section#product .wrap ul li a p {
  
  width: 60%;
}
section#product .wrap .pdetail {
  width: calc(100% / 2);
  position: relative;
  padding-left: 85px;
  padding-top: 90px;
}
section#product .wrap .pdetail article {
  display: grid;
  grid-template-columns: 50% calc(50% - 50px);
  grid-template-rows: auto auto 1fr;
  column-gap: 50px;
  row-gap: 24px;
}
section#product .wrap .pdetail article hgroup {
  
  transition: 1s ease-in-out;
  opacity: 1;
}
section#product .wrap .pdetail article hgroup h3 {
  margin-bottom: 16px;
  font-weight: bold;
}
section#product .wrap .pdetail article hgroup h4 {
  
  font-weight: bold;
}
section#product .wrap .pdetail article p.h4 {
  line-height: 1.3;
  font-weight: bold;
  white-space: pre-line;
}
section#product .wrap .pdetail article p.p {
  
}
section#product .wrap .pdetail article img {
  grid-row: 1 / span 3;
  grid-column: 2;
}
section#product .wrap .slick-dots{
  display: flex;
  position: absolute;
  bottom: 350px;
}
section#product .wrap .slick-dots li{
  
  /*! width: 100%; */
}
section#product .wrap .slick-dots li button{
  
}
section#product .wrap .slick-dots li button::before{
  
  font-size: 12px;
  color: #6c6767;
}
section#product .wrap .slick-prev{
  
  background-image: url(../img/main_slide_left.png);
  width: 63px;
  height: 14px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  transform: translateX(97px) translateY(200px);
  z-index: 1;
}
section#product .wrap .slick-prev::before{
  color: transparent;
}
section#product .wrap .slick-next{
  background-image: url(../img/main_slide_right.png);
  width: 63px;
  height: 14px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  transform: translateX(-600px) translateY(200px);
  z-index: 1;
}
section#product .wrap .slick-next::before{
  color: transparent;
}
section#product .slick-dots li.slick-active button:before{
  color: #3abcee;
}