@charset "UTF-8";

.iso_contents_list.gx {
  margin-bottom: 0;
  margin-top: 40px;
}

.iso_contents_list_item .item_text a {
  background-image: linear-gradient(to right, #2D3132, #2D3132);
  /* 線の色 */
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat;
  /* 背景を繰り返さない */
  padding-bottom: 1px;
}

.iso_contents_list_item .item_text a:hover {
  animation: linkLineReverse 0.5s ease forwards;
}

@keyframes linkLineReverse {
  0% {
    background-size: 100% 1px;
    background-position: bottom right;
  }

  50% {
    background-size: 0 1px;
    /* 幅(100%=文字の長さ) | 高さ(線の太さ) */
    background-position: bottom right;
  }

  51% {
    background-position: bottom left;
  }

  100% {
    background-size: 100% 1px;
  }
}
.data_link.innerLink.gx {
margin: 0;
}