/**************************************************************
  Footer
**************************************************************/
.l-footer {
    background-color: #333333;
    color: #ffffff;
    padding-block: 80px 40px;
    padding-inline: var(--inline-gutter);
}

.l-footer__inner {
    width: min(100.0%, var(--content-width));
    margin-inline: auto;
}

.l-footer__main {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

@media screen and (min-width: 1440px) {
    .l-footer__main {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        gap: 40px;
    }
}

.l-footer__info {
    flex: 1.5;
}

.l-footer__brand-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
}

.l-footer__brand-text {
    border-left: 1px solid rgba(255, 255, 255, 0.20);
    padding-left: 24px;
}

.l-footer__company-name {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.l-footer__time {
    font-size: 13px;
    opacity: 0.60;
    margin-top: 4px;
}

.l-footer__stores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
}

.l-footer__store-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0.0;
}

.l-footer__store-head {
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-main);
}

.l-footer__store-en {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-main);
    letter-spacing: 0.2em;
    margin-bottom: 4px;
}

.l-footer__store-name {
    font-size: 18px;
    font-weight: 700;
}

.l-footer__store-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.l-footer__store-address {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.80;
    min-height: 3.2em;
}

.l-footer__store-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.l-footer__store-contact p {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.l-footer__store-contact span {
    font-size: 10px;
    font-weight: 700;
    opacity: 0.50;
    width: 2.5em;
}

.l-footer__nav {
    flex: 1.0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    padding-bottom: 4px;
}

@media screen and (min-width: 640px) {
    .l-footer__nav {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }
}

.l-footer__nav-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.l-footer__nav-title::after {
    content: "";
    position: absolute;
    bottom: 0.0;
    left: 0.0;
    width: 24px;
    height: 2px;
    background-color: var(--color-main);
}

.l-footer__nav-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.l-footer__nav-list a {
    font-size: 14px;
    color: #ffffff;
    opacity: 0.60;
    transition: all 0.3s;
}

.l-footer__nav-list a:hover {
    opacity: 1.0;
    color: var(--color-main);
}

.l-footer__bottom {
    padding-top: 40px;
    text-align: center;
}

.l-footer__copyright {
    font-size: 12px;
    opacity: 0.40;
}

@media screen and (max-width: 1024px) {
    .l-footer__stores-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}