@charset "UTF-8";
#sec-pdc{
  padding: 0 1.6rem;
  padding-bottom: 6.4rem;
}
.heading-eyecatch{
  background-image: url(../img/eyecatch/product.jpg);
}
.heading{
  margin-bottom: 2.4rem;

  font-size: 2.8rem;
  color: var(--main-color);
  text-align: center;
  line-height: 1.4;
}
.text{
  margin-bottom: 4rem;

  font-size: 1.6rem;
  color: #333;
  line-height: 2;
}

.productlistContainer{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  column-gap: 2.4rem;
  row-gap: 6.4rem;
}
.productlistContainer .title{
  width: 100%;
  padding-bottom: .8rem;
  margin-bottom: 1.6rem;

  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--main-color);
  border-bottom: solid 1px var(--main-color);
}
.productlistContainer img{
  width: 100%;
  margin-bottom: 1.6rem;
}
.productlistContainer ul>*+*{
  margin-block-start: .8rem;
}
.productlistContainer ul li{
  font-size: 1.6rem;
  line-height: 1.4;
}
#sec-hw{
  position: relative;
  padding: 0 1.6rem;
  padding-top: 4.8rem;

  --bg-color: #E0EBFF;
  background: var(--bg-color);
  border-image-source: linear-gradient(var(--bg-color), var(--bg-color));
  border-image-slice: 0 fill;
  border-image-outset: 0 100vw;
}
#sec-hw .h3-wrap{
  position: absolute;
  top: -3.6rem;
  left: 50%;
  transform: translateX(-50%);

  display: inline-flex;
  padding: 2rem 3.6rem;

  color: #fff;
  background: var(--main-color);
}
#sec-hw h3{
  width: 100%;
  padding-top: 0;
  margin-bottom: 0;

  font-size: 3.2rem;
  font-weight: 400;
  text-align: left;
}
#sec-hw{
  padding-bottom: 6.4rem;
}
#sec-hw .sec-hw-content>p.text{
  padding-bottom: 6.4rem;
}
#sec-hw .hw-itemCNTR>*+*{
  margin-block-start: 2.4rem;
}
#sec-hw .hw-item{
  display: grid;
  grid-template-columns: 36rem 1fr;
  column-gap: 2.4rem;
}
#sec-hw .hw-item .textContent{
  padding-top: 1.6rem;
}
#sec-hw .hw-item .textContent .title{
  position: relative;
  padding-bottom: calc(0.8rem + 0.2rem);
  margin-bottom: .8rem;

  font-size: 2.2rem;
  font-weight: 600;
  color: var(--main-color);
}
#sec-hw .hw-item .textContent .title::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;

  display: inline-block;
  width: 2em;
  height: 1px;

  background: var(--main-color);
}


@media (max-width : 1024px){
  .productlistContainer{
    display: grid;
    grid-template-columns: repeat(2,1fr);
  }
}
@media (max-width : 599px){
  .productlistContainer{
    display: grid;
    grid-template-columns: repeat(1,1fr);
  }

  #sec-hw .h3-wrap{
    position: inherit;
    top: auto;
    left: auto;
    transform: none;
  
    display: inline-flex;
    width: 100%;
    padding: 2rem 3.6rem;
    margin-bottom: .8rem;
  
    color: #fff;
    background: var(--main-color);
  }
  #sec-hw h3{
    font-size: 2.4rem;
    text-align: center;
  }

  #sec-hw .hw-item{
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 2.4rem;
  }
  #sec-hw .hw-item .textContent{
    padding-top: 1.6rem;
  }
  #sec-hw .hw-item .textContent .title{
    position: relative;
    padding-bottom: calc(0.8rem + 0.2rem);
    margin-bottom: .8rem;
  
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--main-color);
  }
  #sec-hw .hw-item .textContent .title::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
  
    display: inline-block;
    width: 2em;
    height: 1px;
  
    background: var(--main-color);
  }
}