/* フッター */
footer {
  position: sticky;
  top: 100vh;
  font-family: "Noto Sans JP";
}

.footer__menu-text {
  background-color: var(--commonBlack, #222);
  color: var(--backgroundGray, #eff2f7);
  padding: 28px 72px;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  width: 100vw;
}

.footer_text {
  color: var(--backgroundGray, #eff2f7);
  padding-right: 10px;
}

.footer__textimg-flex {
  display: flex;
  align-items: center;
}

.footer__void-class {
  display: flex;
  gap: 32px;
}

.footer__text-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__text_right-alignment {
  display: block;
  text-align: end;
  flex-grow: 1;
}

.footer_svg {
  height: 108px;
  width: auto;
}

.footer_text:hover {
  color: var(--noActiveGray, #a3a3a3);
}

/* フッター　ここまで */

@media (max-width: 767px) {
  /* フッター */

  .footer__menu-text {
    display: block;
    font-weight: 500;
    padding: 28px 16px;
  }

  .footer__textimg-flex {
    justify-content: center;
  }

  .footer__text-flex {
    display: block;
    text-align: center;
  }

  .footer__void-class {
    display: grid;
    padding-bottom: 32px;
    gap: 8px;
  }

  .footer__text_right-alignment {
    text-align: center;
  }

  /* フッター　ここまで */
}