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




/*==============================
partsBox
==============================*/

.partsBox > img:first-of-type{
  max-width: 100%;
  margin: 0 auto 70px;
}

.kindsList{
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.kindsList:last-child{
  margin-bottom: 0;
}

.kindsList > li{
  width: 45%;
  max-width: 430px;
  margin-bottom: 100px;
  text-align: left;
}

.kindsList > li:nth-of-type(2n - 1){
  margin-bottom: 0;
}

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

.kindsList > li > h4{
  margin-bottom: 25px
} 

.kindsList > li > h4 > span{
  font-size: 36px;
  font-weight: bold;
  color: #4DC1E9;
  margin-right: 15px;
}

.kindsList > li > img{
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.kindsList > li > p{
  text-align: justify;
}

@media screen and (max-width: 1000px){
  #kindsWrap{
    padding: 0 20px 100px;
  }
  
  #kindsWrap > h3{
    margin-bottom: 50px;
  }
  
  .kindsList{
    max-width: 600px;
  }
  
  .kindsList > li,
  .kindsList > li:nth-of-type(2n - 1){
    margin-bottom: 50px;
  }
}

@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;
  }
}

/*==============================
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;
  }
}

