@charset "utf-8";

/* ===== Footer ±âº» ½ºÅ¸ÀÏ ===== */
.foot-con {
  background-color: #444444;
  color: #ccc;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  padding: 40px 0;
}

.foot.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== º»¹® ¿µ¿ª ===== */
.inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

/* --- ·Î°í --- */
.l_cont .foot_logo img {
  width: 180px;
  height: auto;
  display: block;
}

/* --- Áß¾Ó Á¤º¸ ¿µ¿ª --- */
.m_cont {
  flex: 1 1 60%;
  text-align: left;
  color: #ccc;
}

.m_cont .foot_menu {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 10px;
}

.m_cont .foot_menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  background: transparent;
}

.m_cont .foot_menu a:hover {
  text-decoration: underline;
}

.foot_addr {
  color: #aaa;
  font-size: 13px;
  margin-bottom: 8px;
  line-height: 1.5;
  font-style: normal;
}

.foot_addr .line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 4px;
}

.foot_addr dl {
  display: flex;
  gap: 4px;
  margin: 0;
}

.foot_addr dt {
  font-weight: normal;
  color: #aaa;
  white-space: nowrap;
}

.foot_addr dd {
  margin: 0;
  white-space: nowrap;
}

/* ===== Ä«ÇÇ¶óÀÌÆ® Èò ¹è°æ Á¦°Å ===== */
.copy,
.copy *,
.copy a,
.copy span,
.copy p {
  color: #777;
  font-size: 12px;
  margin-top: 6px;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

/* --- ¿À¸¥ÂÊ °ü·Ã»çÀÌÆ® & SNS --- */
.r_cont {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 14px;
}

.family_site {
  padding: 8px 10px;
  border: 1px solid #555;
  background-color: #222;
  color: #fff;
  border-radius: 4px;
  font-size: 13px;
  width: 160px;
  text-align: center;
}

.r_cont .foot_sns {
  display: flex;
  gap: 10px;
}

.r_cont .foot_sns a img {
  width: 30px;
  height: 30px;
  opacity: 0.8;
  transition: 0.3s;
}

.r_cont .foot_sns a img:hover {
  opacity: 1;
}

/* ===== ¹ÝÀÀÇü ===== */
@media (max-width: 1024px) {
  .inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .foot_menu {
    justify-content: center;
  }

  .l_cont,
  .m_cont,
  .r_cont {
    align-items: center;
    text-align: center;
  }

  .r_cont {
    align-items: center;
  }

  .family_site {
    width: 200px;
  }

  .foot_addr .line {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .foot-con {
    padding: 28px 10px;
    font-size: 12px;
    line-height: 1.4;
  }

  .m_cont .foot_menu {
    gap: 8px 10px;
    font-size: 12px;
  }

  .foot_addr {
    font-size: 11px;
  }

  .foot_addr .line {
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .foot_addr dd {
    white-space: normal;
    text-align: center;
  }

  .copy,
  .copy *,
  .copy a,
  .copy span,
  .copy p {
    font-size: 10px;
    margin-top: 8px;
    background: transparent !important;
    background-color: transparent !important;
  }

  .family_site {
    width: 90%;
    font-size: 12px;
  }

  .r_cont .foot_sns a img {
    width: 26px;
    height: 26px;
  }
}

/* ===== footer ÅØ½ºÆ® µå·¡±× °¡´É ===== */
.foot-con,
.foot-con * {
  user-select: text !important;
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
}