@charset "UTF-8";

/* pc */

/* ir-library */

.ir-library .link-gp {
  justify-content: flex-start;
}

.ir-library .link-gp li {
  display: flex;
  width: 30.91%;
  margin-right: 3.6%;
}

.ir-library .link-gp li:nth-child(3n),
.ir-library .link-gp li:last-child{
  margin-right: 0;
}

.ir-library .link-gp li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
  border: none;
  background-color: inherit;
  cursor: pointer;
  border-bottom: 1px solid #e0e0e0;
}

.ir-library .link-gp li a span:first-child {
  line-height: 1.8;
}

.ir-library .link-gp li a:hover {
  background-color: #048851;
  color: #fff;
  border-radius: 5px;
}

.ir-library .link-arrow {
  position: relative;
  max-width: 24px;
  width: 100%;
  height: 24px;
  border-radius: 50%;
}

.ir-library .link-arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #048851;
  content: '';
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border-radius: 50%;
}

.ir-library .link-gp li a:hover .link-arrow {
  background-color: #fff;
}

.ir-library .link-gp li a:hover .link-arrow::before {
  width: 8px;
  height: 8px;
  background: url('/img/common/ico_arrow_green.svg') no-repeat center/contain;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .ir-library .link-gp li a .link-arrow {
    background-color: #048851;
  }

  .ir-library .link-gp li a .link-arrow::before {
    width: 8px;
    height: 8px;
    background: url(/img/common/ico_arrow_white.svg) no-repeat center/cover;
  }

  .ir-library .link-gp li a:hover {
    background-color: #fff;
    color: #048851;
    border-radius: 5px;
  }

  .ir-library .link-gp li a:hover .link-arrow {
    background-color: #048851;
  }

  .ir-library .link-gp li a:hover .link-arrow::before {
    background: url(/img/common/ico_arrow_white.svg) no-repeat center/cover;
  }
}

@media only screen and (max-width: 767.9px) {
  .ir-library .link-gp li {
    width: 100%;
    margin-right: 0;
  }

  .ir-library .link-gp li a .link-arrow {
    background-color: #048851;
  }

  .ir-library .link-gp li a .link-arrow::before {
    width: 8px;
    height: 8px;
    background: url('/img/common/ico_arrow_white.svg') no-repeat center/cover;
  }

  .ir-library .link-gp li a:hover {
    background-color: #fff;
    color: #048851;
    border-radius: 5px;
  }

  .ir-library .link-gp li a:hover .link-arrow {
    background-color: #048851;
  }

  .ir-library .link-gp li a:hover .link-arrow::before {
    background: url(/img/common/ico_arrow_white.svg) no-repeat center/cover;
  }
}