@charset "utf-8";

/* header */


/* footer */
#footer {
  width: 100%;
  background-color: #3b3c3e;
  padding: 50px 0;
}

.footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer__left {
  display: flex;
  flex-direction: column;
}

.footer__policy {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
  list-style: none;
  padding: 0;
}

.footer__policy li a {
  font-family: 'Pretendard', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.footer__policy li.privacy a {
  color: #3b82f6;
}

.footer__info p {
  font-family: 'Pretendard', sans-serif;
  font-size: 14px;
  color: #d1d5db;
  margin: 0 0 8px;
  line-height: 1.5;
}

.footer__info p:last-child {
  margin-bottom: 0;
}

.footer__info p strong {
  color: #fff;
  font-weight: 700;
  margin-right: 5px;
}

.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer__family-site {
  margin-bottom: 30px;
}

.family-site__btn {
  background-color: #3b82f6;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 10px 40px 10px 20px;
  font-family: 'Pretendard', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  min-width: 150px;
  text-align: left;
}

.family-site__btn::after {
  content: '';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #fff;
}

.footer__copy {
  font-family: 'Pretendard', sans-serif;
  font-size: 13px;
  color: #9ca3af;
  margin: 0;
  letter-spacing: 0;
}

@media screen and (max-width: 1024px) {
  .footer__inner {
    padding: 0 20px;
  }
}

@media screen and (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__right {
    margin-top: 40px;
    align-items: flex-start;
  }
  .family-site__btn {
    width: 100%;
  }
}