/* ==============================
   푸터
============================== */
#footer {
  background-color: #333;
  height: 280px;
  box-sizing: border-box;
}

#ft {
  height: 100%;
}

#ft_wr {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 0;
  box-sizing: border-box;
}

#ft_company,
#ft_company a {
  color: #a9abad;
  line-height: 1.5em;
  font-size: 16px;
}

.hd_right {
  margin-left: auto;
  flex-shrink: 0;
  /* background-color: #fff; */
  padding: 6px 4px;
}
.hd_right a {
  color: #fff !important;
}

.hd_mhw {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-family: 'PretendardRegular', sans-serif;
  transition: color 0.2s;
}
.hd_mhw:hover {
  color: #c0392b;
}
.mhw_ico {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e8f0fe;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.mhw_ico svg {
  width: 18px;
  height: 18px;
  fill: #1a56c4;
}
/* 상단 네비 */
.ft_top {
  margin-bottom: 42px;
  padding-bottom: 23px;
  border-bottom: 1px solid #666;
  display: flex;
  align-items: center;
}

.ft_nav {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ft_nav li {
  display: flex;
  align-items: center;
}

.ft_nav li a {
  color: #999;
  text-decoration: none;
  font-size: 16px;
  white-space: nowrap;
}

.ft_nav li a:hover {
  color: #fff;
}

.ft_nav li::after {
  content: '';
  display: block;
  width: 1px;
  height: 12px;
  background-color: #666;
  margin: 0 12px;
}

.ft_nav li:last-child::after {
  display: none;
}

.ft_nav li.privacy a {
  color: #fff !important;
}

/* 구분선 */
.ft_divider {
  border: none;
  border-top: 1px solid #555;
  margin: 0 0 24px;
}

/* 하단: 로고 + 정보 */
.ft_bottom {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.ft_logo img {
  max-height: 50px;
  width: auto;
  display: block;
}

/* 회사 정보 */
#footer_info {
  flex: 1;
  color: #a9abad;
  font-size: 16px;
  line-height: 1.8;
}

#footer_info span {
  color: #ccc;
  font-weight: 600;
  margin-right: 4px;
}

#footer_info .copyr {
  margin-top: 10px;
  color: #888;
  font-size: 16px;
}

/* top 버튼 */
.top_btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  line-height: 46px;
  border: 2px solid #333;
  color: #000;
  text-align: center;
  font-size: 15px;
  z-index: 90;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.top_btn:hover {
  border-color: #3059c7;
  background: #3059c7;
  color: #fff;
}
