/* サイト全体のフォント指定 */
body {
font-family:  "メイリオ" ;
background-Color:#ffffff;
}



.wrap{
  background: Color #fff;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-around;
height:250px;
}
.wrap > div{
  background-Color:#219C90 ;
  display:flex;
  flex-wrap:wrap;
  height:100px;
  width:30%;
  border-radius:20px;
  justify-content:space-around;
  bottom:10px;
}
.wrap > div> div{
  height:40px;
  width:80%;
  text-align:center;
  border-radius:20px;
}
.wrap > div> div:first-child{
color:white;
}

.wrap > div:last-child{
color:white;
  background-Color:#EE4E4E;
height:30px;
width:60%;
}


