/* ========================================
Footer Styles
======================================== */
.l-footer * {
    box-sizing: border-box;
    color: #666666;
    font-family: "Noto Sans JP", sans-serif;
}
.l-footer {
    background: url(/images/top/footer__bg.webp) no-repeat center center / cover;
    padding: 100px 0 50px;
    position: relative;
    z-index: 5;
    background-color: #fff;
}
.l-footer a {
    transition: .3s;
}
.l-footer a:hover {
    opacity: 1;
}

.l-footer__inner {
    width: 1140px;
    margin: 0 auto;
}

.l-footer__main {
    display: flex;
    gap: 50px;
    justify-content: space-between;
    margin-bottom: 15px;
}

.l-footer__info {
    width: 550px;
}

.l-footer__company-name {
    display: block;
    margin-bottom: 10px;
    width: 60px;
    height: 60px;
}

.l-footer__company-address {
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: .05em;
    margin-bottom: 5px;
}

.l-footer__company-contact {
    margin-bottom: 30px;
}

.l-footer__tel {
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: .05em;
    margin-bottom: 5px;
    font-family: "Zen Old Mincho", serif;
    font-weight: 500;
}


.l-footer__hours {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: .05em;
}

.l-footer__buttons {
    display: none;
}

.l-footer__links {
    width: 440px;
    min-height: 292px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.l-footer__link-columns {
    display: flex;
    gap: 50px;
}

.l-footer__link-title {
    display: none;
}

.l-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.l-footer__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.l-footer__list li {
    margin: 0;
}

.l-footer__list a {
    font-size: 13px;
    line-height: 1.5;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.65px;
    position: relative;
}

.l-footer__copyright {
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: .05em;
    text-align: right;
    margin: 0;
}

.l-footer__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.l-footer__meta-links {
    display: flex;
    gap: 20px;
    margin: 0;
}

.l-footer__meta-links a {
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: .05em;
    text-decoration: none;
    position: relative;
}

#searchlink {
    margin-top: 10px;
}

#searchlink-inner {
    width: 100%;
}

.link-area {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.link-area:not(:last-child) {
    margin-bottom: 10px;
}

.link-area-ttl {
    min-width: 96px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .05em;
}

.subhead-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.subhead-row-item {
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: .05em;
}

.subhead-row-item a {
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: .05em;
    text-decoration: none;
    border: 0;
    padding: 0;
    height: auto;
    display: inline;
}

.subhead-row-item a::after {
    content: " / ";
}

.link-area {
    display: flex;
    gap: 0 15px;
}
.link-area-ttl {
    width: 95px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.65px;
    line-height: 1.5;
}
.subhead-row {
    display: flex;
    gap: 0 5px;
}
.subhead-row-item a {
    font-size: 13px;
    position: relative;
}
.subhead-row .subhead-row-item a:before {
    bottom: -2px;
}
.subhead-row-item a:before,
.l-footer__list li a:before,
.l-footer__meta-links a:before {
    background: #666;
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -5px;
    transform-origin: left top;
    transform: scale(0, 1);
    transition: transform .3s;
}
.subhead-row-item a:hover::before,
.l-footer__list li a:hover::before,
.l-footer__meta-links a:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
}