@charset "UTF-8";
/* ============================================ */
/* カテゴリー名サイズ設定
/* ============================================ */
/* ============================================ */
/* footer
/* ============================================ */
#footer {
  padding: 50px 0 30px;
  background: var(--color-white);
}
#footer .wrap {
  width: 90%;
}
#footer .flex-wrap {
  display: flex;
  justify-content: center;
  gap: 60px;
}
#footer .site-name {
  display: flex;
  flex-direction: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  flex-shrink: 0;
}
#footer .site-name .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#footer .site-name .logo-mark {
  display: block;
  width: 170px;
  margin: 0 0 10px;
}
#footer .site-name .logo-text {
  width: 154px;
}
#footer .site-name .recruiting-site {
  display: block;
  width: 175px;
  padding: 3% 5%;
  background: var(--color-black);
  fill: var(--color-white);
  margin: 10px 0 0;
}
#footer .site-name .co-link {
  margin: 20px 0 0;
}
#footer .link-list {
  display: flex;
  gap: 30px;
}
#footer .link-list .category-name {
  display: block;
  margin: 0 0 20px;
}
#footer .link-list .category-name.sp {
  display: none;
}
#footer .link-list .category-name .ja,
#footer .link-list .category-name .icon-arrow {
  display: none;
}
#footer .link-list .child {
  font-size: 13px;
  font-size: 0.8125rem;
}
#footer .link-list .child .icon-arrow {
  display: none;
}
#footer .company .category-name {
  width: 132px;
}
#footer .work .category-name {
  width: 84px;
}
#footer .people .category-name {
  width: 96px;
}
#footer .environment .category-name {
  width: 187px;
}
#footer .recruit .category-name {
  width: 107px;
}
#footer .copyright {
  text-align: center;
  color: #898989;
  font-size: 13px;
  font-size: 0.8125rem;
  margin: 50px 0 0;
}

@media screen and (max-width: 1400px) {
  #footer .link-list {
    max-width: 700px;
    flex-wrap: wrap;
    gap: 0;
  }
  #footer .link-list .company,
#footer .link-list .environment {
    width: 37%;
  }
  #footer .link-list .work,
#footer .link-list .recruit {
    width: 30%;
  }
  #footer .link-list .people {
    width: 33%;
  }
  #footer .link-list .environment,
#footer .link-list .recruit {
    margin: -50px 0 0;
  }
}
@media screen and (max-width: 1200px) {
  #footer {
    padding: 80px 0 130px;
  }
  #footer .site-name {
    align-items: center;
  }
  #footer .link-list {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #footer {
    padding: 50px 0 130px;
  }
  #footer .copyright {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
@media screen and (max-width: 600px) {
  #footer .copyright {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
/* ============================================ */
/* page-top
/* ============================================ */
#page-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: block;
  width: 50px;
  height: auto;
  aspect-ratio: 1/1;
  z-index: 10;
}
#page-top::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-black);
  border-radius: 50%;
  transition: 0.3s;
}
#page-top::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/common/page-top.svg) no-repeat center;
  background-size: 30%;
}

@media (hover: hover) {
  #page-top:hover::before {
    transform: scale(1.15);
  }
}
@media screen and (max-width: 1200px) {
  #page-top {
    bottom: 100px;
    right: 3%;
  }
}
@media screen and (max-width: 768px) {
  #page-top {
    bottom: 70px;
    right: 5%;
  }
}

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