@charset "UTF-8";
/*
  /asset/css/object/component/c-textlink.css
  テキストリンクCSS
*/
.c-textlink {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  padding: 0 0 0 23px;
  cursor: pointer;
  color: var(--black);
  @media screen and (max-width: 840px) {
    font-size: 14px;
  }
  &::before {
    content: "";
    display: inline-block;
    background-color: var(--gray-07);
    width: 18px;
    height: 18px;
    border-radius: 9px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: all ease 0.3s;
  }
  &::after {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translate3d(-50%, -50%, 0) rotate(45deg);
    transition: all ease 0.3s;
  }
  &:hover {
    &::before {
      left: -3px;
    }
    &::after {
      left: 5px;
    }
  }
}
