@charset "UTF-8";
/* ======================================================
 * PC
====================================================== */

/* テキストリンク */
.arrow {
  max-width: 840px;
  margin: 0 auto;
}
a.arrow-link {
  display: inline-block;
  position: relative;
  padding-left: 18px;
  font-weight: bold;
  font-size: 22px;
  line-height: 1.4;
}
a.arrow-link::before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 15px;
  background-color: #b3b3b3;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
a.arrow-link:hover {
  text-decoration: underline;
  color: #294E95;
}

/* ======================================================
 * SP
====================================================== */
@media print, screen and (max-width: 767px) {
  a.arrow-link {
    font-size: 18px;
  }
  a.arrow-link::before {
    top: 5px;
  }
}