footer.footer_top {
    margin-top: 320px;
}
footer.footer_wrapper {
    position: relative;
    overflow: hidden;
    display: flex;
    width: 100%;
    background: hsl(0, 0%, 100%);
}
footer.footer_wrapper .footer_img_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 1s;
}
footer.footer_wrapper .footer_img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center left;
}
footer.footer_wrapper .footer_inner {
    position: relative;
    transform: translateX(200%);
    width: 50vw;
    padding: 55px 80px 0;
    background: #232120;
    transition: 1s;
}
/* footer.footer_wrapper.active .footer_img_box {
    width: 50vw;
} */
footer.footer_wrapper.active .footer_inner {
    transform: translateX(100%);
}
footer.footer_wrapper .footer_inner #page_top {
    position: absolute;
    top: 55px;
    right: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 63px;
    height: 63px;
    border-radius: 50%;
    border: 1px solid #D4D4D4;
    background: transparent;
    color: #D4D4D4;
    font-size: 13px;
    line-height: 1.4;
    transition: .5s;
    cursor: pointer;
}
footer.footer_wrapper .footer_inner #page_top:hover {
    background: #2C2C2C;
}
footer.footer_wrapper .footer_inner #page_top::before {
    content: "";
    width: 8px;
    height: 6px;
    background-image: url(../img/ic_arrow_gl.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
footer.footer_wrapper .footer_inner .footer_info img {
    width: 170px;
    height: auto;
}
footer.footer_wrapper .footer_inner .footer_info .address {
    margin-top: 40px;
    color: #D4D4D4;
    font-size: 13px;
}
footer.footer_wrapper .footer_inner .contact_box {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 90px;
}
footer.footer_wrapper .footer_inner .contact_box a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 20px;
    width: 100%;
    height: 130px;
    border: 1px solid #676767;
    background: transparent;
    color: #D4D4D4;
    transition: .5s;
}
footer.footer_wrapper .footer_inner .contact_box a:hover {
    background: #676767;
}
footer.footer_wrapper .footer_inner .contact_box .btn_tel img {
    width: 29px;
    height: auto;
}
footer.footer_wrapper .footer_inner .contact_box .btn_mail img {
    width: 28px;
    height: auto;
}
footer.footer_wrapper .footer_inner .contact_box .btn_tel p {
    font-size: 12px;
    text-align: center;
}
footer.footer_wrapper .footer_inner .contact_box .btn_tel p span {
    display: block;
    font-size: 37px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: .1em;
}
footer.footer_wrapper .footer_inner .contact_box .btn_mail p {
    font-size: 22px;
    font-weight: 500;
}
footer .footer_inner .sitemap {
    position: relative;
    margin-top: 25px;
    padding: 8% 10%;
    background: #2C2C2C;
}
footer .footer_inner .sitemap p {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(-180deg);
    color: #414040;
    font-size: 1.8em;
    line-height: 1;
    writing-mode: vertical-rl;
    white-space: nowrap;
}
footer .footer_inner .sitemap .menu_box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
footer .footer_inner .sitemap .menu_box .menu_list:last-of-type {
    transform: translateX(-30%);
}
footer .footer_inner .sitemap a {
    color: #D4D4D4;
    font-size: 14px;
    transition: .5s;
}
footer .footer_inner .sitemap a:hover {
    opacity: .5;
}
footer .footer_inner .sitemap .child_list {
    margin: 10px 0 0 10px;
    padding-left: 10px;
    border-left: 1px solid #D4D4D4;
}
footer .footer_inner .sitemap .child_list li + li {
    margin-top: 4px;
}
footer .footer_inner .sitemap.sp {
    display: none;
}
footer .footer_inner small {
    display: block;
    padding: 50px 0 35px;
    text-align: center;
    color: #D4D4D4;
    font-size: 11px;
}
footer.footer_small {
    display: block;
    margin: 124px auto 40px;
    font-size: 11px;
    line-height: 1.6;
    text-align: center;
}
@media screen and (max-width: 1200px) {
    /* footer.footer_wrapper.active .footer_img_box {
        width: 40vw;
    } */
    footer.footer_wrapper.active .footer_inner {
        width: 60vw;
        transform: translateX(40vw);
    }
}
@media screen and (max-width: 990px) {
    footer.footer_top {
        margin-top: 0;
    }
    /* footer.footer_wrapper.active .footer_img_box {
        width: 30vw;
    } */
    footer.footer_wrapper.active .footer_inner {
        width: 70vw;
        transform: translateX(30vw);
    }
}
@media screen and (max-width: 768px) {
    footer .footer_inner .sitemap.pc {
        display: none;
    }
    footer .footer_inner .sitemap.sp {
        display: block;
    }
    footer .footer_inner .sitemap {
        padding: 80px 20px 50px;
    }
    footer .footer_inner .sitemap p {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%,0) rotate(0);
        font-size: 2.8em;
        writing-mode: initial;
    }
    footer .footer_inner .sitemap .menu_box {
        justify-content: center;
        gap: 5%;
    }
    footer .footer_inner .sitemap .menu_box .menu_list li + li {
        margin-top: 16px;
    }
    footer .footer_inner .sitemap .menu_box .menu_list:last-of-type {
        transform: translateX(0);
    }
    footer.footer_wrapper .footer_inner .contact_box a {
        height: 110px;
    }
    footer.footer_wrapper .footer_inner .contact_box .btn_tel p {
        font-size: 11px;
    }
    footer.footer_wrapper .footer_inner .contact_box .btn_tel p span {
        font-size: 32px;
    }
    footer.footer_wrapper .footer_inner .contact_box .btn_mail p {
        font-size: 18px;
    }
    /* footer.footer_wrapper.active .footer_img_box {
        width: 0;
    } */
    footer.footer_wrapper.active .footer_inner {
        width: 100vw;
        transform: translateX(0);
    }
    footer.footer_wrapper .footer_inner {
        padding: 55px 35px 0;
    }
    footer.footer_wrapper .footer_inner .contact_box a {
        gap: 0 10px;
    }
    footer.footer_wrapper .footer_inner #page_top {
        top: 35px;
        right: 20px;
    }
}
