@charset "utf-8";
/* CSS Document */
.pagelinks_g {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: clamp(24px, 6vw, 80px);
}
.pagelinks_g a {
  width: min(100%, 260px);
  text-decoration: none;
}
.pagelinks_g a > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.pagelinks_g a > div p {
  width: 100%;
  margin: 0;
  padding: 14px 20px;
  box-sizing: border-box;
  background: #fff;
  border: 2px solid #ff6e1d;
  border-radius: 999px;
  color: #333;
  text-align: center;
  line-height: 1.4;
  transition: .3s;
}
.pagelinks_g a > div .more-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagelinks_g a > div .more-icon i {
  color: #ff6e1d;
  font-size: 24px;
  line-height: 1;
  transition: .3s;
}
.pagelinks_g a:hover > div p {
  background: #ff6e1d;
  color: #fff;
}
.pagelinks_g a:hover > div .more-icon i {
  transform: translateY(2px);
}
@media screen and (max-width: 768px) {
  .pagelinks_g {
    gap: 24px;
  }
  .pagelinks_g a {
    width: min(100%, 320px);
  }
}
@media screen and (max-width: 576px) {
  .pagelinks_g {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .pagelinks_g a {
    width: 100%;
    max-width: 320px;
  }
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px) {}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px) {}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px) {}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px) {}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px) {}