.footer {
  background: #262626;
  padding: 100px 0;
}

.footer__info {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.footer__info__company,
.footer__info__menu {
  width: 50%;
}

.footer__info__company {
  font-size: 0.875rem;
  color: #999999;
}

.footer__info__logo {
  margin-bottom: 2rem;
}

.footer__info__logo img {
  height: 66px;
}

.office__korea,
.office__phil {
  margin-bottom: 1rem;
}

.office__area,
.office__connect {
  display: flex;
  gap: 1rem;
}

.office__area {
  margin-bottom: 0.5rem;
}

.office__title {
  font-weight: 700;
}

.office__connect__tel::before {
  content: 'Tel. ';
}

.office__connect__tel::after {
  content: ' | ';
  margin-left: 1rem;
}

.office__connect__fax::before {
  content: 'Fax. ';
}

.office__connect__fax::after {
  content: ' | ';
  margin-left: 1rem;
}

.office__connect__email::before {
  content: 'Email. ';
}


.footer__info__menu {
  text-align: right;
}

.footer__info__menu__nav ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer__info__copyright {
  color: #999999;
  font-size: 0.875rem;
}

/* ≤1440 */
@media (max-width:1440px) {
  .footer {
    padding: 90px 0;
  }

  .footer__info {
    gap: 40px;
  }

  .footer__info__logo img {
    height: 62px;
  }

  .footer__info__menu__nav ul {
    gap: 0.9rem;
  }
}

/* ≤1280 */
@media (max-width:1280px) {
  .footer {
    padding: 86px 0;
  }

  .footer__info {
    gap: 36px;
  }

  .footer__info__logo img {
    height: 58px;
  }

  .footer__info__menu__nav ul {
    font-size: 1.125rem;
    gap: 0.85rem;
  }

  .footer__info__company {
    font-size: 0.85rem;
  }

  .footer__info__copyright {
    font-size: 0.8125rem;
  }
}

/* ≤1024 */
@media (max-width:1024px) {
  .footer {
    padding: 84px 0;
  }

  .footer__info {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  .footer__info__company,
  .footer__info__menu {
    width: 100%;
  }

  .footer__info__menu {
    text-align: left;
  }

  .footer__info__menu__nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    margin-bottom: 1.25rem;
    font-size: 1.0625rem;
  }

  .footer__info__logo img {
    height: 56px;
  }
}

/* ≤768 */
@media (max-width:768px) {
  .footer {
    padding: 80px 0;
  }

  .footer__info {
    gap: 28px;
  }

  .footer__info__logo {
    margin-bottom: 1.25rem;
  }

  .footer__info__logo img {
    height: 52px;
  }

  /* 주소/연락처 줄바꿈 가독성 */
  .office__area,
  .office__connect {
    flex-direction: column;
    gap: 0.5rem;
  }

  .office__connect__tel::after,
  .office__connect__fax::after {
    content: '';
    margin: 0;
  }

  /* 구분자 제거 */
  .footer__info__company {
    font-size: 0.85rem;
  }

  .footer__info__menu__nav ul {
    font-size: 1rem;
    gap: 0.6rem 0.9rem;
  }

  .footer__info__copyright {
    font-size: 0.8rem;
  }
}

/* ≤390 */
@media (max-width:390px) {
  .footer {
    padding: 72px 0;
  }

  .footer__info {
    gap: 24px;
  }

  .footer__info__logo img {
    height: 48px;
  }

  .footer__info__company {
    font-size: 0.8125rem;
  }

  .footer__info__menu__nav ul {
    font-size: 0.95rem;
    gap: 0.5rem 0.8rem;
    margin-bottom: 1rem;
  }

  .footer__info__copyright {
    font-size: 0.75rem;
  }
}

.footer {
  position: relative;
}

.gotop__btn {
  position: absolute;
  right: 250px;
  top: -40px;
  width: 70px;
  height: 70px;
  background: #41b76b;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gotop__btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .8), 0 0 0 6px rgba(0, 0, 0, .25);
}

.gotop__icon {
  width: 70%;
  height: 70%;
  display: block;
}

.gotop__icon path {
  stroke: #fff;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* 1280px 이하 */
@media (max-width: 1280px) {
  .gotop__btn {
    right: 150px !important;
    top: -30px !important;
    width: 60px !important;
    height: 60px !important;
  }
}

/* 1024px 이하 */
@media (max-width: 1024px) {
  .gotop__btn {
    right: 80px !important;
    top: -30px !important;
    width: 60px !important;
    height: 60px !important;
  }
}

/* 768px 이하 (태블릿~모바일) */
@media (max-width: 768px) {
  .gotop__btn {
    right: 20px !important;
    top: -25px !important;
    width: 50px !important;
    height: 50px !important;
  }
}