@charset "UTF-8";
/* .m_anchor-menu */
.m_anchor-menu {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-template-columns: repeat(3, 1fr); /* デフォルトは3列固定 */
}
.m_anchor-menu:has(.m_anchor-menu__navi:nth-child(2):last-child) {
  /* 要素2つのとき */
  grid-template-columns: 1fr 1fr;
}
.m_anchor-menu:has(.m_anchor-menu__navi:nth-child(4):last-child) {
  /* 要素4つのとき */
  grid-template-columns: repeat(4, 1fr); /* 4つの場合は1行4列 */
}
.m_anchor-menu__navi {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(var(--primary), var(--primary)) 0 -5px / 100% 7px no-repeat;
  overflow: hidden;
}
@media (hover: hover) {
  .m_anchor-menu__navi:hover {
    animation: el_anchor__line-link 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0s;
  }
}
@keyframes el_anchor__line-link {
  0% {
    background-size: 100% 2px;
    background-position: 100% 0;
  }
  50% {
    background-size: 0 2px;
    background-position: 100% 0;
  }
  51% {
    background-size: 0 2px;
    background-position: 0 0;
  }
  100% {
    background-size: 100% 2px;
    background-position: 0 0;
  }
}
.m_anchor-menu .m_anchor-menu__navi .m_anchor-menu__link {
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 4px;
  padding: 20px 20px 30px;
  font-size: 20px;
  text-align: left;
  line-height: 1.5;
  font-weight: 700;
  background-color: var(--gray-bg);
  overflow: hidden;
}
.m_anchor-menu__link-icon {
  position: absolute;
  top: 25px;
  right: 22px;
  width: 28px;
  height: 80px;
  display: block;
  overflow: hidden;
}
.m_anchor-menu__link-icon::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 28px;
  background: url(/bridge/asset/image/common/icon_arrow-big-down.svg) left center no-repeat;
  background-size: 100%;
}
.m_anchor-menu__link-icon::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 28px;
  background: url(/bridge/asset/image/common/icon_arrow-big-down.svg) left center no-repeat;
  background-size: 100%;
  transform: translateY(-100px);
}
@media (hover: hover) {
  .m_anchor-menu__link:hover .m_anchor-menu__link-icon::before {
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0s, opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0s;
    opacity: 0;
    transform: translateY(101%);
  }
  .m_anchor-menu__link:hover .m_anchor-menu__link-icon::after {
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
    transform: translateY(0);
  }
}
.m_anchor-menu__title {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 700;
  color: var(--font);
  line-height: 1;
}
.m_anchor-menu__title span {
  font-family: "Roboto", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, Geneva, Arial, Helvetica, "ＭＳ Ｐゴシック", osaka, sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--primary);
}
@media screen and (max-width: 768px) {
  .m_anchor-menu {
    display: block;
  }
  .m_anchor-menu__navi + .m_anchor-menu__navi {
    margin-top: 15px;
  }
}
/* .m_anchor-menu end */
