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

#knowledgeWrap p > span{  
  font-weight: bold;
  background:linear-gradient(transparent 70%, #AFE3F5 70%);
}

/*==============================
roofing01Box
==============================*/

.roofing01Box > div{
  display: flex;
  text-align: left;
}

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

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

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

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

/*==============================
roofing02Box
==============================*/

#knowledgeWrap > div.roofing02Box > h4::before{
  content: "?";
}

/*==============================
roofing03Box
==============================*/


.flowList{
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.flowList > li{
  position: relative;
  display: flex;
  align-items: flex-start;
  background-color: #F8F5EA;
  border-radius: 10px;
  margin-bottom: 50px;
  padding: 10px 20px 25px;
}

.flowList > li::before{
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 0 15px;
  border-color: #AFE3F5 transparent transparent transparent;
  bottom: -32px;
  left: 0;
  right: 0;
  margin: auto;
}

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

.flowList > li:last-of-type::before{
  display: none;
}

.flowList > li > div{
  width: 100%;
  margin-right: 50px;
}

.flowList > li > img{
  width: 100%;
  max-width: 300px;
  height: auto;
}

.flowList > li > h4{
  line-height: 36px;
} 

.flowList > li > h4 > span{
  font-size: 26px;
  line-height: 26px;
  font-weight: bold;
  color: #4DC1E9;
  margin-right: 15px;
}

.flowList > li > p{
  letter-spacing: 0;
  text-align: left;
  padding-top: 15px;
}

.flowList > li > p:last-child{
  margin-bottom: 0;
}


@media screen and (max-width: 1000px){  
  .flowList{
    max-width: 600px;
  }
  
  .flowList > li{
  }
  
  .flowList > li h4{
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 600px){
  .flowList{
    max-width: 400px;
  }
  
  .flowList > li{
    padding: 20px 20px 30px;
  }
  
  .flowList > li > h4 > span{
    margin-right: 10px;
  }
}

/*==============================
roofing04Box
==============================*/

.roofing04Box > h5{
  text-align: left;
  margin-bottom: 15px;
}