/* ============================================ */
/* footer
/* ============================================ */
#footer {
  background: #e8e8e8;
  color: #707070;
  line-height: 1.5;
  padding: 65px 4% 25px;
  /* ===== footer-nav ===== */
  /* ===== site-info ===== */
  /* ===== copyright ===== */
}
#footer .flex-wrap {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
}
#footer .footer-nav {
  display: flex;
  justify-content: flex-start !important;
  margin: 0 auto;
  order: 2;
}
#footer .footer-nav a {
  position: relative;
  transition: 0.3s;
  /*
  &::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 1px;
    border-radius: 2px;
    background: var(--color-university);
    transform: scale(0, 1);
    transform-origin: left center;
    transition: .3s;
  }

  &:hover {
    &::before {
      transform: scale(1, 1);
    }
  }
  */
}
#footer .footer-nav .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 650px;
}
#footer .footer-nav .menu-item {
  width: 200px;
}
#footer .footer-nav .menu-item:nth-of-type(3) {
  width: 250px;
}
#footer .footer-nav .menu-item:nth-of-type(4) {
  width: 250px;
  margin-top: -90px;
}
#footer .footer-nav .link-name {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 500;
  display: block;
  margin: 0 0 1.2em;
}
#footer .footer-nav .sub-menu-item + .sub-menu-item {
  margin: 0.7em 0 0;
}
#footer .footer-nav .other {
  position: relative;
  width: 200px;
  display: block;
}
#footer .footer-nav .other::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: var(--color-white);
}
#footer .footer-nav .other .menu-item {
  margin-left: 30px;
}
#footer .footer-nav .other .menu-item:nth-of-type(2) {
  margin-top: 45px;
}
#footer .footer-nav .other .menu-item:nth-of-type(3) {
  margin-top: 20px;
}
#footer .footer-nav .other .icon-link::after {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background-image: url(../img/common/icon-blank.svg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  margin: 0 0 0 0.5em;
}
#footer .site-info {
  padding: 0 10% 0 0;
  order: 1;
}
#footer .site-info .logo {
  max-width: 300px;
  margin-bottom: 40px;
}
#footer .site-info .corporate {
  font-weight: 500;
}
#footer .site-info .corporate .name {
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 0.6em;
}
#footer .copyright {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: var(--fontfamily-en);
  text-align: center;
  margin-top: 40px;
}

@media (hover: hover) {
  #footer a:hover {
    color: var(--color-university);
  }
}
@media screen and (min-width: 1150px) and (max-width: 1350px) {
  #footer .footer-nav .menu {
    width: 850px;
  }
  #footer .footer-nav .menu-item:nth-of-type(3) {
    width: 200px;
  }
  #footer .footer-nav .menu-item:nth-of-type(4) {
    margin-top: 0;
  }
}
@media screen and (max-width: 1350px) {
  #footer .flex-wrap {
    flex-direction: column;
  }
  #footer .footer-nav {
    order: 1;
  }
  #footer .site-info {
    padding: 50px 0 0;
    text-align: center;
    order: 2;
  }
  #footer .site-info .logo {
    width: 60%;
    margin-bottom: 20px;
  }
  #footer .copyright {
    margin-top: 20px;
  }
}
@media screen and (max-width: 925px) {
  #footer {
    padding: 30px 5% 25px;
  }
  #footer .footer-nav {
    display: none;
  }
  #footer .site-info {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  #footer .flex-wrap {
    font-size: 13px;
    font-size: 0.8125rem;
  }
  #footer .site-info .corporate .name {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 600px) {
  #footer .copyright {
    font-size: 10px;
    font-size: 0.625rem;
  }
}

/*# sourceMappingURL=footer.css.map */