@charset "utf-8";

/* フォーム */
.formErrorContent {
  background: #fff;
  position: relative;
  padding: 10px 15px;
  display: inline-block;
  margin-top: 10px;
  border-radius: 3px;
  color: rgb(18, 48, 74);
  font-size: 13px;
}

.formErrorContent::before {
  content: "";
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  border-left: 10px solid transparent;
  position: absolute;
  top: -10px;
}

/* reCAPTCHAアイコン */
.grecaptcha-badge {
    z-index: 10
}


/*240520　事例*/
.case_list {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  list-style-type: none;
  border: 1px solid #47b2e4;
  padding: 15px;

  border: 1px solid #9ca8af;
}
.case_list li {
  width: 50%;
  text-align: center;
}
/*3つ目以降*/
.case_list li:nth-of-type(n+3) {
  margin-top: 30px;
}
.case_list li a{
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}
.case_list li a::before {
  /* content: ">";
  color: #587790;
  display: inline-block;
  font-size: 16px;
  margin-right: 15px; */

  font-family: "Font Awesome 5 Pro";
  content: "\f054";
  position: absolute;
  font-size: 15px;
  font-weight: bold;
  width: 20px;
  left: -25px;
  top: 0px;
  transition: all .3s;
  transform: rotate(90deg);
}
/* .case_list li a:hover::before {
  animation: btn-text-anima 1s linear infinite;
} */
.case_list li a:hover {
  opacity: .8;
  transition: all .3s;
}

@media only screen and (min-width: 768px) {
  .case_list {
    padding: 30px;
  }
  .case_list li {
    width: 25%;
  }
  /*3つ目以降*/
  .case_list li:nth-of-type(n+3) {
    margin-top: 0;
  }
  /*5つ目以降*/
  .case_list li:nth-of-type(n+5) {
    margin-top: 30px;
  }
}
