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

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

/*==============================
slope01Box
==============================*/

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

/*==============================
slope02Box
==============================*/


.slope02Box > h5{
  text-align: left;
  margin-bottom: 30px;
}

#knowledgeWrap > div.slope02Box > h4{
  margin-bottom: 20px;
}

#knowledgeWrap > div.slope02Box > h4::before{
  content: "●";
  font-size: 24px;
}

.slope02Box > hr{
  display: block;
  width: 100%;
  height: 1px;
  border: none;
  background-color: #f1f1f1;
  margin-bottom: 10px;
}

.slope02Box > p{
  margin-bottom: 50px;
}

/*==============================
slope03Box
==============================*/


#knowledgeWrap > div.slope03Box > h4{
  margin-bottom: 50px;
}

#knowledgeWrap > div.slope03Box > h4::before{
  content: "●";
  font-size: 24px;
}

.slope03Box > p{
  margin-bottom: 50px;
}

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

.meritBox > h4{
  margin-bottom: 50px;
}

.meritBox > div{
  display: flex;
  justify-content: space-between;
  text-align: left;
}

.meritBox > div > div{
  position: relative;
  display: block;
  width: 100%;
  max-width: 390px;
  height: auto;
  padding: 40px 20px 30px;
  border-radius: 10px;
  background-color: #F8F5EA;
}

.meritBox > div > div > span{
  position: absolute;
  display: inline-block;
  width: 80%;
  background-color: #4DC1E9;
  font-weight: bold;
  top: -25px;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 10px;
  padding: 8px 10px;
  text-align: center;
}

.meritBox > div > div > span::before{
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 10px 0 10px;
  border-color: #4dc2e9 transparent transparent transparent;
  bottom: -8px;
  left: 0;
  right: 0;
  margin: auto;
}

.meritBox > div > div > p{
  line-height: 28px;
}

.meritBox > div > div:nth-of-type(2){
  background-color: #EBEBEB;
}

.meritBox > div > div:nth-of-type(2) > span{
  color: #fff;
  background-color: #000;
}

.meritBox > div > div:nth-of-type(2) > span::before{
  border-color: #000 transparent transparent transparent;
}

@media screen and (max-width: 1000px){  
  .meritBox{
    width: 100%;
    max-width: 600px;
    margin: 0 auto 50px;
    display: block;    
  }
  
  .meritBox > div{
    display: block;
  }
  
  .meritBox > div > div{
    margin: 0 auto 50px;
  }
  
  .meritBox > div > div:last-of-type{
    margin-bottom: 0;
  }
}


@media screen and (max-width: 600px){
  .meritBox{
    max-width: 400px;
  }
}