@charset "utf-8";
/* CSS Document */




/*==============================
materialBox
==============================*/
.materialBox > img{
  width: 100%;
  margin: 0 auto;
  margin-bottom: 50px;
}

#knowledgeWrap > div.materialBox > h4{
  display: block;
  padding: 0;
  margin-bottom: 20px;
  text-align: center;
}

#knowledgeWrap > div.materialBox > h4::before{
  display: none;
}

#knowledgeWrap > div.materialBox > p{
  text-align: center;
  margin-bottom: 50px;
}

.dataTable{
  width: 100%;
  margin-bottom: 50px;
}

.dataTable tr{
  display: flex;
}

.dataTable th,
.dataTable td{
  padding: 15px 20px;
}

.dataTable th{
  width: 16%;
  color: #fff;
  background-color: #000;
  border-radius: 20px 0 0 20px;
  text-align: center;
}

.dataTable th p{
  color: #fff;
  font-weight: bold;
}

.dataTable td{
  width: 28%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-right: 2px solid #fff;
  background-color: #F8F5EA;
}

.dataTable td:last-of-type{
  border-right: none;
}

#knowledgeWrap > div.materialBox > p:last-of-type{
  margin-bottom: 20px;
}

.makerList{
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.makerList > li{
  margin-bottom: 20px;
}

.makerList > li > a{
  display: block;
  padding: 15px 20px;
  text-align: center;
  background-color: #838383;
  border-radius: 50px;
  
}

.makerList > li:last-of-type{
  margin-bottom: 0;
}

.makerList > li > a > h5{
  color: #fff;
}

@media screen and (max-width: 1000px){
  
  
  .dataTable tr{
    flex-wrap: wrap;
  }
  
  .dataTable th,
  .dataTable td{
    width: 100%;
  }
  
  .dataTable th{
    border-radius: 20px 20px 0 0;
  }
  
  .dataTable td{
    border-right: none;
    border-bottom: 2px solid #fff;
  }
}

@media screen and (max-width: 600px){
  .kindsList{
    display: block;
    max-width: 400px;
  }
  
  .kindsList > li,
  .kindsList > li:nth-of-type(2n - 1){
    width: 100%;
    margin-bottom: 30px;
  }
  
  .partsBox > img:last-of-type{
    width: 120px;
    top: -80px;
  }
  
  #knowledgeWrap > div.materialBox > h4,
  #knowledgeWrap > div.materialBox > p{
    text-align: left;
  }
   
  #knowledgeWrap > div.materialBox > p:last-of-type{
    font-size: 12px;
    font-weight: bold;
    text-align: center;
  }
}

/*==============================
valleyBox
==============================*/

.valleyBox > div{
  display: flex;
  text-align: left;
  margin-bottom: 100px;
}

.valleyBox > div > img{
  max-width: 40%;
  align-self: flex-start;
  margin-right: 50px;
}

.valleyBox > div > div > h5{
  margin-bottom: 30px;
}

.valleyBox > div > div > p{
  text-align: justify;
}

@media screen and (max-width: 1000px){
  .valleyBox > div{
    display: block;
    margin-bottom: 30px;
  }
  
  .valleyBox > div > img{
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
  }
}

