@charset "euc-kr";

/* ===== CSS º¯¼ö ===== */
#rnw-footer {
  --rnw-nav-bg: #f5f5f5;
  --rnw-nav-border: rgba(0, 0, 0, 0.07);
  --rnw-nav-link: rgba(0, 0, 0, 0.45);
  --rnw-nav-link-hover: rgba(0, 0, 0, 0.85);
  --rnw-nav-divider: rgba(0, 0, 0, 0.12);
  --rnw-bottom-bg: #fafafc;
  --rnw-text-strong: rgba(0, 0, 0, 0.72);
  --rnw-text-mid: rgba(0, 0, 0, 0.42);
  --rnw-text-dim: rgba(0, 0, 0, 0.28);
  --rnw-accent: #3a5fcc;
  clear: both;
}

/* ===== FOOTER NAV ===== */
#rnw-footer-nav {
  width: 100%;
  background-color: var(--rnw-nav-bg);
  border-bottom: 1px solid var(--rnw-nav-border);
}
.rnw-nav-inner {
  width: fit-content;
  margin: 0 auto;
}
.rnw-nav-inner ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.rnw-nav-inner ul li {
  position: relative;
}
.rnw-nav-inner ul li + li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 11px;
  background: var(--rnw-nav-divider);
}
.rnw-nav-inner ul li a {
  display: inline-block;
  color: var(--rnw-nav-link);
  font-size: 13px;
  padding: 0 16px;
  line-height: 46px;
  font-family: "Malgun Gothic", "¸¼Àº°íµñ", dotum, "µ¸¿ò", sans-serif;
  letter-spacing: -0.2px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.rnw-nav-inner ul li a:hover {
  color: var(--rnw-nav-link-hover);
}

/* ===== FOOTER BOTTOM ===== */
#rnw-footer-bottom {
  width: 100%;
  background-color: var(--rnw-bottom-bg);
}
.rnw-bottom-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 30px 24px 32px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
}

/* ·Î°í */
.rnw-logo-area img {
  width: 140px;
}

/* Á¤º¸ ¿µ¿ª */
.rnw-info-area {
  text-align: left;
}

/* Åä±Û Çì´õ */
.rnw-info-head {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  cursor: pointer;
  width: fit-content;
}
.rnw-company-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--rnw-text-strong);
  font-family: "Malgun Gothic", "¸¼Àº°íµñ", dotum, sans-serif;
  letter-spacing: -0.3px;
}

/* µå·Ó ¹öÆ° */
.rnw-drop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  cursor: pointer;
  color: var(
    --rnw-text-strong
  ); /* mid ¡æ strong À¸·Î º¯°æ, Èò¹è°æ¿¡¼­ È®½ÇÈ÷ º¸ÀÌ°Ô */
  transition: color 0.2s ease;
  flex-shrink: 0;
  line-height: 1;
}

svg {
  color: #8c8c8c !important;
}

.rnw-drop-btn:hover {
  color: var(--rnw-accent);
}

.rnw-drop-icon {
  transition: transform 0.3s ease;
  display: block;
}
.rnw-drop-btn.rnw-open .rnw-drop-icon {
  transform: rotate(180deg);
}

/* ±âº» ÁÖ¼Ò */
.rnw-info-address span {
  font-size: 12px;
  color: var(--rnw-text-mid);
  font-family: "Malgun Gothic", "¸¼Àº°íµñ", dotum, sans-serif;
  letter-spacing: -0.2px;
  line-height: 1.8;
}

/* »ó¼¼ Á¤º¸ Åä±Û */
.rnw-info-detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.35s ease,
    opacity 0.3s ease,
    margin 0.3s ease;
  margin-top: 0;
}
.rnw-info-detail.rnw-open {
  max-height: 150px;
  opacity: 1;
  margin-top: 6px;
}
.rnw-info-detail p {
  font-size: 12px;
  color: var(--rnw-text-mid);
  font-family: "Malgun Gothic", "¸¼Àº°íµñ", dotum, sans-serif;
  line-height: 2;
  letter-spacing: -0.2px;
  margin: 0;
}

/* Ä«ÇÇ¶óÀÌÆ® */
.rnw-copyright {
  font-size: 11px;
  color: var(--rnw-text-dim);
  font-family: "Malgun Gothic", "¸¼Àº°íµñ", dotum, sans-serif;
  letter-spacing: 0;
}
