.footer {
  padding: 32px 20px 34px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer__menu {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .footer__menu {
    display: grid;
    grid-template: repeat(5, auto)/1fr 1fr;
    grid-auto-flow: column;
    gap: 0;
    width: auto;
    margin: 0;
  }
}
.footer__menu__item {
  margin-right: 0.5em;
}
@media screen and (max-width: 768px) {
  .footer__menu__item {
    margin-top: 1em;
    margin-right: 0;
  }
}
.footer__menu__item--recruit {
  margin-left: -2em;
}
@media screen and (max-width: 768px) {
  .footer__menu__item--recruit {
    margin-left: 0;
  }
}
.footer__menu__item--students .footer__menu__text {
  color: #eb6133;
}
.footer__menu__link {
  text-decoration: none;
}
.footer__menu__text {
  position: relative;
  padding-bottom: 8px;
  color: #0075be;
  font-size: 1.0625rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .footer__menu__text {
    font-size: 1rem;
  }
}
.footer__menu__text::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #0075be;
  opacity: 0;
  transition: opacity 0.3s;
}
.footer__menu__text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #eb6133;
  opacity: 0;
  transition: opacity 0.3s;
}
.footer__menu__text:hover::before, .footer__menu__text:focus::before {
  opacity: 1;
}
.footer__menu__text:hover::after, .footer__menu__text:focus::after {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .footer__menu__text--wantedly {
    width: 116px;
  }
}
.footer__sub-menu {
  list-style: none;
}
.footer__sub-menu__item {
  margin-top: 1em;
}
.footer__sub-menu__text {
  position: relative;
  padding-left: 4px;
  border-left: 1px solid #0075be;
  color: #0075be;
  font-size: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .footer__sub-menu__text {
    font-size: 1rem;
  }
}
.footer__sub-menu__text::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #0075be;
  opacity: 0;
  transition: opacity 0.3s;
}
.footer__sub-menu__text::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 20px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #eb6133;
  opacity: 0;
  transition: opacity 0.3s;
}
.footer__sub-menu__text:hover::before, .footer__sub-menu__text:focus::before {
  opacity: 1;
}
.footer__sub-menu__text:hover::after, .footer__sub-menu__text:focus::after {
  opacity: 1;
}
.footer__logo {
  width: 224px;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 152px;
    margin-top: 32px;
  }
}
.footer__copyright {
  display: block;
  margin-top: 8px;
  color: #0075be;
  font-size: 0.625rem;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    margin-top: 4px;
    font-size: 0.5625rem;
  }
}