footer {
    background-color: #222;
    padding:80px 0;
}

footer .footer {
    max-width: 1280px;
    margin: auto;
}

footer .footer .footer-logo {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

footer .footer .footer-logo dl {
    display: flex;
    gap:15px;
    align-items: center;
}

footer .footer .footer-logo dt {
    color:#fff;
    font-size: var(--fontsize-body4, 16px);
    margin-right: 5px;
}

footer .footer .footer-contents {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

footer .footer .footer-contents .address * {
    color:#fff;
    font-size: var(--fontsize-body4, 16px);
}

footer .footer .footer-contents .related {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:20px;
}
/* 래퍼 */
footer .footer .footer-contents .footer-select {
    position: relative;
    width: 100%;
  }
  
/* 실제 select 박스 */
footer .footer .footer-contents .footer-select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    border-radius: 5px;          /* 알약 모양 */
    background-color: rgba(0,0,0,0.25);

    font-size: var(--fontsize-body4, 16px);
    color: #fff;

    width: 100%;
    padding: 15px 20px;        /* 오른쪽은 화살표 자리 */
    cursor: pointer;
    border: none;
}

/* 포커스 스타일 (선택 사항) */
footer .footer .footer-contents .footer-select select:focus {
    outline: none;
    border-color: #999;
}

/* 기본 브라우저 화살표 숨기기 (IE 포함) */
footer .footer .footer-contents .footer-select select::-ms-expand {
    display: none;
}

/* 커스텀 화살표 */
footer .footer .footer-contents .footer-select::after {
    content: "";
    position: absolute;
    right: 20px;
    top: calc(50% - 3px);
    width: 14px;
    height: 7px;
    background: url(../images/ic_arrow_down_white.svg) no-repeat transparent center;
    pointer-events: none;   /* 클릭이 select로 전달되도록 */
}

footer .footer .footer-menu {
    margin-top: 40px;   
}

footer .footer .footer-menu ul {
    display: flex;
    flex-wrap: wrap;
}

footer .footer .footer-menu ul li {
    padding: 0 20px;
    position: relative;
}

footer .footer .footer-menu ul li::after {
    content: "";
    display: block;
    width: 1px;
    height: 14px;
    background-color: #777;
    position: absolute;
    top:calc(50% - 9px);
    right: 0;
}
footer .footer .footer-menu ul li:first-child {
    padding-left: 0;
}

footer .footer .footer-menu ul li:last-child:after  {
    display: none;
}

footer .footer .footer-menu ul li a {
    color:#777;
    font-size: 1rem;
}