.supportMenu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 27px;
}
@media screen and (max-width: 980px) {
  .supportMenu {
    grid-template-columns: repeat(3, 1fr);
  }
}

ul,
ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.supportMenu_item {
  position: relative;
}

.supportMenu_item a {
  height: 100%;
  display: block;
  border: 1px solid #cccccc;
  border-radius: 4px;
  padding: 48px 16px 24px;
  box-shadow: 8px 12px 16px 0 rgba(0,0,0,0.1);
}
.supportMenu_item .title {
  margin: 12px auto;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  color: #E08025; {# 494a52 #}
  position: relative;
  padding-right: 15px;
  display: table;
}

.supportMenu_item .title::before {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #E08025;
  border-right: 3px solid #E08025;
  transform: rotate(45deg);  
  content: "";
  z-index: 1;
  position: absolute;
  bottom: 0px;
  top: 1px;
  right: 0px;
  margin: auto;
}

.supportMenu_item .text {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #494a52;
}
.supportMenu_item .comment {
  background: #C92B26;
  font-size: 1.2rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 12px 0 8px;
  {#
  padding: 4px 12px 4px 8px;
  #}
  position: absolute;
  top: 10px;
  left: -4px;
  border-radius: 1px 0px 0px 1px;
  {# 以前の見せ方
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  color: #e08025;
  #}
}

.supportMenu_item .comment::before {
  content: "";
  z-index: 1;
  width: calc(18px / 2 * tan(30deg));
  height: 26px;
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
  position: absolute;
  right: -0.5px;
  top: 0;
  bottom: 0;
  margin: auto 0; /* 上下の中央揃え */
  background: #ffffff;
}

.supportMenu_item .image {
  display: table;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .supportMenu_item a,
  .supportMenu_item a .title{
    transition: .3s;
  }
  .supportMenu_item a:hover {
    border-color: #E08025;
    box-shadow: 0 0 32px 0 rgba(0,0,0,0.1);
  }
  .supportMenu_item a:hover .title {
    color: #E08025;
  }
}

@media screen and (max-width: 767px) {
  .supportMenu {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
