/* ============================================ */
/* footer-entry
/* ============================================ */
#footer-entry {
  position: relative;
  display: block;
  width: 100%;
  height: 280px;
  color: var(--color-white);
}
#footer-entry::before {
  background-image: url(../img/common/footer_entry.jpg);
  background-position: right center;
}
#footer-entry::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-blue);
  mix-blend-mode: multiply;
}
#footer-entry .wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  width: calc(100% - 70px);
  height: calc(100% - 70px);
  max-width: 1660px;
  padding: 0 80px 0 0;
  border: solid 1px var(--color-white);
  border-radius: 10px;
  transform: translate(-50%, -50%);
  z-index: 1;
}
#footer-entry .logo365 {
  position: absolute;
  left: 30px;
  top: 30px;
  width: 200px;
  fill: var(--color-white);
  filter: saturate(0) brightness(200%);
}
#footer-entry .text {
  display: flex;
  gap: 1em;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
}
#footer-entry .text img {
  width: 155px;
}

@media screen and (max-width: 768px) {
  #footer-entry {
    height: 240px;
  }
  #footer-entry .wrap {
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    padding: 0 5% 0 0;
  }
  #footer-entry .logo365 {
    left: 20px;
    top: 20px;
    width: 130px;
  }
  #footer-entry .text {
    font-size: 18px;
    font-size: 1.125rem;
  }
  #footer-entry .text img {
    width: 120px;
  }
}
@media screen and (max-width: 600px) {
  #footer-entry {
    height: 240px;
  }
  #footer-entry .logo365 {
    left: 15px;
    top: 15px;
    width: 100px;
  }
  #footer-entry .text {
    flex-direction: column;
    gap: 0.5em;
    font-size: 16px;
    font-size: 1rem;
  }
  #footer-entry .text img {
    width: 150px;
  }
}
/* ============================================ */
/* footer
/* ============================================ */
#footer {
  padding: 140px 50px 50px;
}
#footer .wrap {
  width: 100%;
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
#footer .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
#footer .info .site-name {
  display: flex;
  align-items: flex-end;
}
#footer .info .site-name .logo {
  width: 400px;
}
#footer .info .site-name .recruit {
  position: relative;
  display: flex;
  align-items: center;
  top: -10px;
  white-space: nowrap;
}
#footer .info .site-name .recruit::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1.5em;
  background: var(--color-black);
  margin: 0 1em 0 2em;
  transform: rotate(35deg);
}
#footer .info .address {
  color: var(--color-blue);
}
#footer .info .address .tel {
  margin: 0 1em 0 0;
}
#footer .link-copyright {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
#footer .link-copyright .copyright {
  display: block;
  width: 500px;
  padding: 0 0 5px;
}

@media screen and (max-width: 1024px) {
  #footer {
    padding: 100px 10% 50px;
  }
  #footer .wrap {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  #footer .info {
    align-items: center;
  }
  #footer .link-copyright {
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  #footer {
    padding: 50px 10% 120px;
  }
  #footer .info .site-name .logo {
    width: 260px;
  }
  #footer .info .site-name .recruit {
    top: -3px;
  }
}
@media screen and (max-width: 600px) {
  #footer .info .site-name {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  #footer .info .site-name .recruit::before {
    display: none;
  }
  #footer .info .address .tel {
    display: block;
    margin: 0;
  }
  #footer .info .address .fax {
    display: block;
  }
}

/*# sourceMappingURL=footer.css.map */