table{
  width: 100%;
  margin: 1em 0;
  border-collapse:  collapse;
  font-size: 15px;
  line-height: 1.4em;
}

th, td{
  padding: 0.3em;
}

th{
  background: #eee;
}

tr{
  border-bottom: solid 1px #DDD;
  height: 3.5em;
}


th:first-child{
  width: 35%;
}

td:first-child{
  width: 35%;
  padding-left: 0.7em;
}

th:nth-child(2){
  width: 5%;
  text-align: center;
}

td:nth-child(2){
  width: 5%;
  text-align: center;
}

th:nth-child(3){
  width: 45%;
  text-align: center;
}

td:nth-child(3){
  width: 45%;
  text-align: center;
}

th:nth-child(4){
  width: 15%;
  text-align: center;
}

td:nth-child(4){
  width: 15%;
  text-align: center;
  min-width: 48px;
}

tr:nth-child(2n){
  background: #fff;
  }

td a.hislink{
  background: linear-gradient(40deg, #00ACE6, #00D9C7);
  border-radius: 5px;
  padding: 0.5em 1em;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

td a.hislink:hover{
  background: #fff;
  border-radius: 5px;
  border: 1px solid #00ACE6;
  padding: 0.5em 1em;
  color: #00ACE6;
  text-decoration: none;
  font-weight: bold;
}

td a.jmalink {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  color: #0099cc; /* 現在使用している青緑ベース */
  text-decoration: underline;
  font-weight: normal;
  position: relative;
  padding-right: 1em;
  transition: color 0.2s ease;
}

td a.jmalink::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.45em;
  height: 0.45em;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.2s ease; /* 矢印のアニメーション */
}

td a.jmalink:hover {
  text-decoration: none;
}

td a.jmalink:hover::after {
  transform: translateY(-50%) translateX(4px) rotate(45deg);
}




.table-bottom{
  font-size: 1.5em;
  text-align: center;
}




@media screen and (max-width:600px) {

table{
  font-size: 14px;
}

th:nth-child(3){
  width: 35%;
}

td:nth-child(3){
  width: 35%;
}

th:nth-child(4){
  width: 25%;
}

td:nth-child(4){
  width: 25%;
}

td a{
  padding: 0.5em;
}

}