@charset "utf-8";

/* --------------------------------------------


#footer


---------------------------------------------- */

footer {
    padding: 60px 0;
    text-align: center;
    background: #1F286F;
}

.footer__wrap {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 80px;
    width: 90%;
    max-width: 1024px;
    margin: auto;
}

.footer__left {
    width: 50%;
}

.footer__left h2 {
    color: #fff;
    margin-bottom: 20px;
}

.footer__left .gold {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    background-image: linear-gradient(-60deg, #f7b52c 10%, #FFF2B8 50%);
    transition: 0.3s;
    overflow: hidden;
}

.footer__left .gold:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    transition: 0.5s;
    background-image: linear-gradient(-60deg, #f7b52c 70%, #ffeb8c);

}

.footer__left .gold:hover {
    color: #7E4B1E;
    transition: 0.3s;
}

.footer__left .gold:hover:before {
    opacity: 0;
    transition: 0.5s;
}

.footer__right {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
    width: 50%;
}

.footer__right a {
    display: block;
    color: #fff;
    font-size: 16px;
    font-size: 1.6rem;
}

.footer__logo {
    display: inline-block;
    margin: 40px auto 0;
}

.footer__logo img {
    width: 560px;
}

.credit {
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-size: 1.4rem;
}


@media only screen and (max-width:640px) {

    .footer__wrap {
        display: block;
        width: 94%;
    }

    .footer__left {
        width: 100%;
    }

    .footer__right {
        width: 100%;
        justify-content: center;
        gap: 10px 40px;
        margin-top: 40px;
    }
}


/* --------------------------------------------

#footer　印刷時

---------------------------------------------- */

@media print {

    #footer,
    #pageTop {
        display: none;
    }
}