.c-textLink-wrap {
  text-align: center;
  margin-top: 20px;
}

a.c-textLink {
  position: relative;
  display: inline-block;
  padding-right: 20px;
  text-decoration: none;
  color: #b59a70;
  transition: opacity 240ms ease-in-out;
  will-change: opacity;
  margin-top: 16px;
}

a.c-textLink::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background-color: #b59a70;
  opacity: 1;
  transition: opacity 240ms ease-in-out;
  will-change: opacity;
}

a.c-textLink::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 17px;
  background-color: #b59a70;
  transition: opacity 240ms ease-in-out;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='17' fill='none'><path d='M15.9907 0.874869C15.9869 0.859949 15.9832 0.846894 15.9776 0.833838C15.9739 0.818918 15.9702 0.803998 15.9627 0.789078C15.9552 0.772293 15.9459 0.757373 15.9384 0.742452C15.9329 0.731262 15.9273 0.720072 15.9198 0.708882C15.8862 0.658527 15.8415 0.613766 15.7911 0.580196C15.7799 0.572736 15.7687 0.569006 15.7575 0.561546C15.7426 0.552221 15.7277 0.542895 15.7109 0.5373C15.696 0.531705 15.6811 0.527975 15.6661 0.52238C15.6531 0.51865 15.6382 0.513055 15.6251 0.509325C15.5953 0.50373 15.5636 0.5 15.5337 0.5H4.54438C4.287 0.5 4.0781 0.708882 4.0781 0.966255C4.0781 1.22363 4.287 1.43251 4.54438 1.43251H14.409L0.137087 15.7036C-0.0456956 15.8864 -0.0456956 16.1811 0.137087 16.3639C0.228478 16.4552 0.347846 16.5 0.467215 16.5C0.586583 16.5 0.705951 16.4552 0.797342 16.3639L15.0674 2.09273V11.9568C15.0674 12.2142 15.2763 12.4231 15.5337 12.4231C15.7911 12.4231 16 12.2142 16 11.9568V0.966255C16 0.936414 15.9963 0.904709 15.9907 0.874869Z' fill='%23000'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='17' fill='none'><path d='M15.9907 0.874869C15.9869 0.859949 15.9832 0.846894 15.9776 0.833838C15.9739 0.818918 15.9702 0.803998 15.9627 0.789078C15.9552 0.772293 15.9459 0.757373 15.9384 0.742452C15.9329 0.731262 15.9273 0.720072 15.9198 0.708882C15.8862 0.658527 15.8415 0.613766 15.7911 0.580196C15.7799 0.572736 15.7687 0.569006 15.7575 0.561546C15.7426 0.552221 15.7277 0.542895 15.7109 0.5373C15.696 0.531705 15.6811 0.527975 15.6661 0.52238C15.6531 0.51865 15.6382 0.513055 15.6251 0.509325C15.5953 0.50373 15.5636 0.5 15.5337 0.5H4.54438C4.287 0.5 4.0781 0.708882 4.0781 0.966255C4.0781 1.22363 4.287 1.43251 4.54438 1.43251H14.409L0.137087 15.7036C-0.0456956 15.8864 -0.0456956 16.1811 0.137087 16.3639C0.228478 16.4552 0.347846 16.5 0.467215 16.5C0.586583 16.5 0.705951 16.4552 0.797342 16.3639L15.0674 2.09273V11.9568C15.0674 12.2142 15.2763 12.4231 15.5337 12.4231C15.7911 12.4231 16 12.2142 16 11.9568V0.966255C16 0.936414 15.9963 0.904709 15.9907 0.874869Z' fill='%23000'/></svg>");
}

a.c-textLink:hover {
  opacity: 0.5;
}

a.c-textLink:hover::before {
  opacity: 0;
}

/* アニメを好まない環境での切替え */
@media (prefers-reduced-motion: reduce) {
  a.c-textLink {
    transition: none;
  }
  a.c-textLink::before {
    transition: none;
  }
}
