.footer {
  /* layout */
  position: relative;
  display: flex;
  height: 781px;

  /* responsive */
  @media screen and (max-width: 860px) {
    height: 500px;
  }
  @media screen and (max-width: 700px) {
    height: 395px;
  }
}

.footer-background-img-wrapper {
  /* layout */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  display: flex;
}

.footer-background-img {
  /* layout */
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: calc(100% + 0px) 0px;
  display: block;

  /* responsive */
  @media screen and (max-width: 1400px) {
    object-position: calc(100% + 0px) -40px;
  }
  @media screen and (min-width: 2000px) {
    object-position: calc(100% + 0px) -50px;
  }
  @media screen and (min-width: 2400px) {
    object-position: calc(100% + 0px) -100px;
  }
  @media screen and (max-width: 860px) {
    display: none;
  }
}

.footer-background-img-mobile {
  /* layout */
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: calc(100% + 0px) -100px;
  display: none;

  /* responsive */
  @media screen and (max-width: 860px) {
    object-position: calc(100% + 0px) -80px;
    display: block;
  }
  @media screen and (max-width: 700px) {
    object-position: calc(100% + 0px) -90px;
  }
  @media screen and (max-width: 600px) {
    object-position: calc(100% + 0px) -60px;
  }
  @media screen and (max-width: 500px) {
    object-position: calc(100% + 0px) -30px;
  }
  @media screen and (max-width: 400px) {
    object-position: calc(100% + 0px) 10px;
  }
}

.footer-content-wrapper {
  /* layout */
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding-bottom: 80px;
  padding-left: 180px;
  padding-right: 180px;
  margin-top: auto;

  /* responsive */
  @media screen and (max-width: 1200px) {
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.footer-logo {
  /* layout */
  width: 62px;
  height: 34px;
  margin-right: auto;

  /* responsive */
  @media screen and (max-width: 1200px) {
    width: 40px;
    height: 22px;
  }
}

.footer-text-1 {
  /* layout */
  margin-top: 24px;

  /* typography */
  color: var(--Black-Text, #343434);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  /* responsive */
  @media screen and (max-width: 1200px) {
    margin-top: 16px;

    color: var(--gray-70, #6e6e6e);
  }
}

.footer-text-2-wrapper {
  /* layout */
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  margin-top: 12px;

  /* responsive */
  @media screen and (max-width: 1200px) {
    row-gap: 6px;
  }
}

.footer-text-2 {
  /* typography */
  color: var(--gray-70, #6e6e6e);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  /* responsive */
  @media screen and (max-width: 1200px) {
    color: var(--gray50, #a0a0a0);
    font-size: 11px;
  }
}

.footer-text-2-pc {
  /* style */
  display: block;

  /* typography */
  color: var(--gray-70, #6e6e6e);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  /* responsive */
  @media screen and (max-width: 1200px) {
    display: none;

    color: var(--gray50, #a0a0a0);
    font-size: 11px;
  }
}

.footer-text-2-mobile {
  /* style */
  display: none;

  /* typography */
  color: var(--gray-70, #6e6e6e);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  /* responsive */
  @media screen and (max-width: 1200px) {
    display: block;

    color: var(--gray50, #a0a0a0);
    font-size: 11px;
  }
}

.footer-text-3 {
  /* layout */
  margin-top: 24px;

  /* typography */
  color: var(--Black-Text, #343434);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  /* responsive */
  @media screen and (max-width: 1200px) {
    margin-top: 16px;

    color: var(--gray-70, #6e6e6e);
    font-size: 11px;
    font-weight: 500;
    line-height: 16px;
  }

  @media screen and (max-width: 390px) {
    font-size: 8px;
  }
}

.footer-text-4 {
  /* layout */
  margin-top: 24px;

  /* typography */
  color: var(--gray50, #a0a0a0);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;

  /* responsive */
  @media screen and (max-width: 1200px) {
    margin-top: 16px;

    font-size: 11px;
  }
}

.footer-text-separator {
  /* layout */
  margin-left: 8px;
  margin-right: 8px;

  /* responsive */
  @media screen and (max-width: 860px) {
    margin-left: 4px;
    margin-right: 4px;
  }
}
