@charset "utf-8";
.p-company-link {
  margin-top: 50px;
  text-align: center;
}
.p-company-link a {
  color: #000;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-right: 24px;

}
.p-company-link a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 8px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #B5161D;
  border-right: 1px solid #B5161D;
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.2s;
}

.p-company-link a {
  border-bottom: 1px solid #B5161D;
  transition: border-color 0.2s;
}
.p-company-link a:hover {
  border-bottom-color: #fff;
}
