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

/*==============================
headList
==============================*/

.headList{
  width: 100%;
  max-width: 730px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 50px auto 0;
}

.headList > li{
  margin: 0 15px 25px;
}

.headList > li > a{
  display: flex;
  align-items: center;
  padding: 5px 20px;
  border-radius: 30px;
  background-color: #AFE3F5;
}

.headList > li > h5{
}

@media screen and (max-width: 600px){  
  .headList > li{
    margin: 0 10px 15px;
  }

  .headList > li > a{
    padding: 5px 10px;
  }
  
  .headList > li > h5{
    font-size: 14px;
    letter-spacing: 0;
  }
}

/*==============================
knowledgeWrap
==============================*/

#knowledgeWrap{
  padding: 100px 20px;
  background-color: #AFE3F5;
  text-align: center;
}

#knowledgeWrap > div{
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto 50px;
  background-color: #fff;
  padding: 50px 40px;
  border-radius: 30px;
}

#knowledgeWrap > div:last-child{
  margin-bottom: 0;
}

#knowledgeWrap > div > h3{
  display: inline-block;
  line-height: 42px;
  margin: 0 auto 40px;
}

#knowledgeWrap > div > h3 > span{
  font-weight: bold;
  background:linear-gradient(transparent 60%, #FFFF00 60%);
  
}

#knowledgeWrap > div > h4{
  position: relative;
  padding-left: 35px;
  margin-bottom: 35px;
  text-align: left;
}

#knowledgeWrap > div > h4::before{
  content: "!";
  display: inline-block;
  font-size: 36px;
  line-height: 24px;
  margin-right: 15px;
  margin-top: 5px;
  color: #4DC1E9;
  position: absolute;
  left: 0;
  top: 0;
}

#knowledgeWrap > div > p{
  text-align: left;
}


.headBird:last-of-type{
  position: absolute;
  width: 220px;
  top: -150px;
  right: 0;
}

 
@media screen and (max-width: 1000px){
  #knowledgeWrap > div{
    max-width: 600px;
  }
  
  #knowledgeWrap > div > h3{
    line-height: 30px;
    }
  
}

@media screen and (max-width: 600px){
  #knowledgeWrap > div{
    padding: 50px 20px;
  }
  
  #knowledgeWrap > div > h3{
    font-size: 20px;
  } 
  
  .headBird:last-of-type{
    width: 120px;
    top: -80px;
  }

}













