@charset "utf-8";
.icon_menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px 0;
}
.icon_menu a {
  display: flex;
  width: 33%;
  padding: 10px 0;
  background: #000000;
  border-radius: 10px;
  margin-bottom: 10px;
  align-items: center;
}
.icon_menu a:nth-of-type(1) {
  background: #77BC69;
}
.icon_menu a:nth-of-type(2) {
  background: #FFCC33;
}
.icon_menu a:nth-of-type(3) {
  background: #6796AA;
}
.icon_menu a:hover {
  opacity: 0.5;
}
.icon_menu img {
  width: auto !important;
  padding: 0 20px;
  border-right: dotted 1px #ffffff;
}
.icon_menu h4 {
  width: 100%;
  color: #ffffff !important;
  margin: 0 0 0 20px !important;
}
/* 画面幅896px以下の場合 */
@media screen and (max-width: 896px) {
  /* リクエストボタン */
  .icon_menu a {
    width: 48%;
  }
  .icon_menu img {
    width: 33% !important;
    padding: 0 10px;
  }
  .icon_menu h4 {
    margin: 0 0 0 10px !important;
    font-size: 16px !important;
  }
}