@charset "UTF-8";
/*
* 上下に線のあるリンク
*/
a.b_lined {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  min-height: 82px;
  box-sizing: border-box;
  padding: 1em 0 1em 0.8em;
  border: solid 1px rgba(255, 255, 255, 0.6);
  border-left: none;
  border-right: none;
  text-decoration: none;
}
a.b_lined i {
  width: 0.56em;
  height: 0.56em;
  display: block;
  position: absolute;
  top: 50%;
  right: 1.8em;
  border-right: solid 2px #fff;
  border-top: solid 2px #fff;
  transform: rotate(45deg) translateY(-54%);
  transition-delay: 0.6s;
  transition-duration: 0.3s;
}
a.b_lined:hover i {
  right: 0.8em;
}
a.b_lined.gray {
  color: #626262;
  border-color: #c6c6c6;
}
a.b_lined.gray i {
  border-color: #626262;
}
a.b_lined:before, a.b_lined:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 0;
  height: 1;
  background: #fff;
  transition-duration: 0.3s;
}
a.b_lined.gray:before, a.b_lined.gray:after {
  background: #626262;
}
a.b_lined:after {
  top: auto;
  bottom: 0;
}
a.b_lined:hover:before, a.b_lined:hover:after {
  width: 100%;
}/*# sourceMappingURL=links.css.map */