@charset "UTF-8";

.l-footer {
    width: 100%;
    background-color: #162545;
    padding: 14px 0 10px;
}

.l-footer * {
    box-sizing: border-box;
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
}
.l-footer a:hover {
    opacity: 1;
}
.footer__inner {
    width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.footer__contents {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer__logo {
    font-size: 19px;
    font-weight: 700;
}
.footer__logo:hover {
    opacity: 1;
}

.footer__section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer__shop-list {
    display: flex;
    gap: 45px;
}

.footer__shop-item {
    width: 335px;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.footer__info-list * {
    color: #94A1BE;
    font-size: 12px;
}

.footer__shop-name {
    font-size: 14px;
    margin-bottom: 5px;
}

.footer__address {
    font-size: 14px;
    line-height: 1.7;
    display: flex;
}
.footer__address p {
    margin: 0;
    line-height: 1.7;
    color: #94A1BE;
    font-size: 12px;
    width: 75px;
}
.footer__address p.addr {
    width: 260px;
}
.footer__info-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 14px;
    color: #94a1be;
    line-height: 1.7;
}

.footer__info-item {
    display: flex;
    gap: 20px;
}

.footer__info-item .label {
    width: 56px;
}

.footer__link-list {
    display: flex;
    gap: 80px;
}

.footer__link-col {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer__link {
    font-size: 13px;
    color: #fff;
    text-decoration: none;
    line-height: 1.9;
    position: relative;
    width: fit-content;
}
.footer__link:before {
    background: #fff;
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -3px;
    transform-origin: left top;
    transform: scale(0, 1);
    transition: transform .3s;
}

.footer__link:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
}
.footer__copyright {
    font-size: 12px;
    line-height: 1.7;
    color: #fff;
    margin-top: 10px;
}
