footer {}
/* company */
.company-wrap {
    padding: 2.4rem 1.8rem 1.6rem;
    background: #F6F6F6;
    /* display: none; */
}
.company-wrap .info-box {
    display: flex;
    flex-flow: row wrap;
    gap: 1.6rem;
    align-items: center;
    justify-content: space-between;
}
.company-wrap .info-box .logo-box {
    width: 8.2rem;
    height: 2.4rem;
}
.company-wrap .info-box .logo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.company-wrap .info-box .btn-business {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 1.2rem;
    line-height: 1.3;
    color: #656565;
}
.company-wrap .info-box .btn-business img {
    width: 1.6rem;
    height: 1.6rem;
    transition: transform .2s ease;
}
.btn-business.open img { 
    transform: rotate(180deg); 
}
.company-wrap .business-info {
    width: 100%;

}
.company-wrap .business-info .company-desc {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding-bottom: 0.2rem;
}
.company-wrap .business-info .company-desc span {
    font-size: 1rem;
    line-height: 1.3;
    color: #767676;
}
.company-wrap .business-info .company-desc .name {
    padding-right: 0.4rem;
    position: relative;
}
.company-wrap .business-info .company-desc .name::after {
    display: inline-block;
    content: '';
    width: 0.1rem;
    height: 1rem;
    background: #e7e7e7;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.company-wrap .business-info .company-desc .owner {
    padding-right: 0.4rem;
    position: relative;
}
.company-wrap .business-info .company-desc .owner::after {
    display: inline-block;
    content: '';
    width: 0.1rem;
    height: 1rem;
    background: #e7e7e7;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.company-wrap .business-info .address {
    font-size: 1rem;
    line-height: 1.3;
    color: #767676;
}
.company-wrap .copyright {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    color: #ccc;
    padding-top: 1.6rem;
}

/* navigation */
.nav-wrap {
    background: #fff;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 998;
    width: 100%;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    gap: 7.7rem;
    width: 100%;
    height: 5.1rem;
    max-width: 820px;
    margin: 0 auto;
    border-top: 1px solid #e7e7e7;
    padding: 0.5rem 2.7rem;
}
/* 공통 */
.nav-wrap .home-box,.find-box, .book-mark-box, .user-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

/* home */
.nav-wrap .home-box .nav-icon {
    background: url("/images/icon/icon-home.png");
    width: 2.4rem;
    height: 2.4rem;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
}

/* promotion */
.nav-wrap .find-box .nav-icon {
    background: url("/images/icon/icon-find.png");
    width: 2.4rem;
    height: 2.4rem;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
}
/* wish */
.nav-wrap .book-mark-box .nav-icon {
    background: url("/images/icon/icon-book-mark.png");
    width: 2.4rem;
    height: 2.4rem;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
}
/* my */
.nav-wrap .user-box .nav-icon {
    background: url("/images/icon/icon-user.png");
    width: 2.4rem;
    height: 2.4rem;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
}

.nav-wrap a .title {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
}
