/* ==================================================
   new_InnerLink : 独立コンポーネント版
   r1 / everflex 両対応
   ================================================== */

/* ---------- UL ---------- */
.new_InnerLink {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin: 2rem auto;
  padding: 0;
  list-style: none;
  max-width: 1020px;
}

/* ---------- LI ---------- */
.new_InnerLink > li {
  flex: 1 1 calc((100% - 32px) / 3);
  background: linear-gradient(#1A6A9C, #238FB7);
  border-radius: 6px;
  text-align: center;
  overflow: hidden;
}

/* ---------- A ---------- */
.new_InnerLink > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5.5rem;
  padding: 1rem 2.5rem 1rem 1rem;
  box-sizing: border-box;
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: bold;
  text-decoration: none;
  position: relative;
}

/* ---------- 矢印 ---------- */
.new_InnerLink > li > a::after {
  content: "";
  position: absolute;
  right: 12px;
  width: 24px;
  height: 24px;
  background: url("/Prod/comp/soft1/v-infra/images/common/circle_arrow_down_w.svg")
              no-repeat center / contain;
  transition: transform 0.2s ease;
}

.new_InnerLink > li > a:hover::after {
  transform: translateY(6px);
}

/* ---------- タブレット以下 ---------- */
@media screen and (max-width: 997px) {
  .new_InnerLink > li {
    flex: 1 1 100%;
  }
}

/* ---------- 改行制御（everflex互換） ---------- */
@media screen and (min-width: 465px) and (max-width: 1020px) {
  .new_InnerLink br {
    display: none;
  }
}