/* ===== Footer ===== */
footer {
    display: flex;
    flex-wrap: wrap-reverse;
    background-color: #ffffff;
    min-width: 1000px;
    width: 100%;
}

#footer {
    margin: 0 auto;
    font-size: 12px;
    color: #333;
    width: 100%;
}

/* ===== Desktop footer link grid ===== */
#fmenu-lgA {
    background: #f2f2f2;
}

#fmenu-lg {
    font-size: 13px;
    width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

#fmenu-lg ul {
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

#fmenu-lg li {
    width: calc(16.3934%);
    flex-direction: column;
    float: left;
    text-align: left;
    line-height: 1.3;
    font-weight: bold;
    font-size: 12px;
}

#fmenu-lg li::before {
    font-family: "Font Awesome 5 Free";
    content: "";
    margin-right: 5px;
    color: #2ba252;
}

#fmenu-lg li:last-child {
    border: none;
    margin: 0;
}

#fmenu-lg a:link, #fmenu-lg a:visited, #fmenu-lg a:hover {
    color: #555;
    text-decoration: none;
}

#fmenu-lg li ul {
    margin-top: 15px;
}

#fmenu-lg li ul li {
    font-weight: normal;
    font-size: 10px;
    border-right: none;
    height: auto;
    margin-bottom: 5px;
    width: 100% !important;
}

#fmenu-lg li ul li::before {
    font-family: "Font Awesome 5 Free";
    content: "・";
    margin-right: 5px;
}

/* ===== Logo + Copyright ===== */
.logo_f {
    width: 100%;
    padding: 15px 0;
    text-align: center;
}

.logo_f p {
    margin: 0 0 3px;
}

.logo_f img {
    width: 360px;
    height: auto;
}

.copyright {
    padding: 5px 0;
    font-size: 1.2rem;
    color: #333;
}

/* ===== Scroll-to-top button ===== */
#page-top {
    position: fixed;
    bottom: 5px;
    right: 5px;
    font-size: 12px;
    font-weight: bold;
    z-index: 9999;
}

#page-top a {
    color: #ffffff;
    font-size: 25px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    text-decoration: none;
    padding: 5px 15px;
    text-align: center;
    display: block;
    background: #2ba252;
    box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
}

#page-top a:hover {
    background: #5dd485;
    text-decoration: none;
}

/* ===== Mobile footer ===== */
@media screen and (max-width: 768px) {
    footer {
        min-width: 100%;
        flex-direction: column-reverse;
        display: none;
    }

    #fmenu-lg {
        width: 100%;
        padding: 20px;
        text-align: center;
    }

    #fmenu-lg ul {
        flex-direction: column;
        gap: 20px;
        margin: 0;
    }

    #fmenu-lg li {
        width: 100% !important;
        float: none;
    }

    .logo_f img {
        width: 250px;
    }

    #page-top {
        bottom: 70px;
        right: 10px;
    }
}