/* ボタン全体 */
.flowbtn2 {
  margin: 5px;
  font-family: 'Noto Sans Japaneses', sans-serif; 
  position: relative;
  display: inline-block;
  width: 60px;
  height: 55px;
  font-size: 30px;
  border-radius: 4px;
  transition: .5s;
  text-decoration: none;
  margin-bottom:10px;
  
  color: #ffffff;/* アイコンカラー */
  background-color: #ffffff00;/* ここは白で固定 */
  border: solid 0px;;/* 枠線の指定 */
  }
  
  /* マウスホバー時、ボタン内を白に指定 */
  .flowbtn2:hover {
  text-decoration: none;
  cursor: pointer;
  color: #000000;
  
  border: solid 0px #000;/* 枠線カラー */
  background-color: #ffffff;/* 背景カラー */
  }