.footer {
    display: flex;
    gap: 3rem;
    background-color: #FCEBEF;
    padding: 4rem 1rem;
    position: relative;
    z-index: 999;
}

.footer__logo {
    display: flex;
    align-items: center;
}

.footer__logo img{
    width: 10rem;
    height: 7.32rem;
}

.footer__logo span img{
    width: 10rem;
    height: auto;
    margin-top: 1rem;
    margin-left: -2rem;
}

.footer-nav {
    display: flex;
    gap: 5rem;
    font-size: 1.8rem;
    font-family: "LINE Seed JP", sans-serif;
}

.footer-nav a {
    height: fit-content;
    width: fit-content;
}

.footer-nav--facility {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.footer-recruit {
    text-align: center;
    width: 30rem;
    height: 12.5rem;
    position: relative;
}

.footer-recruit::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    width: 100%;
    height: 100%;
    border-radius: 0 0.8rem 0.8rem 0.8rem;
    background: linear-gradient(to right, #F891B4 12.5%, #FB9FB9 25%, #FDADBF 37.5%, #FEBAC7 50%, #FFC7CF 62.5%, #FFD5D9 75%, #FFE2E3 87.5%, #FFEFEF 100%);
    box-shadow: 0 0.3rem 0.6rem #00000029;
}

.footer-recruit__inner {
    position: relative;
    z-index: 2;
    background-color: #FFFFFF;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0 0.8rem 0.8rem 0.8rem;
    padding-top: 0.8rem;
}

.footer-recruit__inner div {
    font-size: 1.8rem;
    font-weight: 400;
    font-family: "Shippori Mincho", serif;
    color: #E95295;
}

.footer-recruit p {
    font-family: "Shippori Mincho", serif;
    font-size: 1.6rem;
    font-weight: 400;
}

.footer-recruit a {
    color: #E95295;
    font-size: 1.6rem;
    font-weight: 700;
    font-family: "LINE Seed JP", sans-serif;
}

.footer__img1 {
    position: absolute;
    bottom: 0;
    animation: poyopoyo ease-in-out alternate 3s infinite;
}

.footer__img2 {
    position: absolute;
    bottom: 0;
    right: 0;
    animation: poyopoyo ease-in-out alternate 3s infinite;
}

@keyframes poyopoyo {

    0%,
    40%,
    60%,
    80% {
        transform: scale(1.0);
    }

    50%,
    70% {
        transform: scale(0.95);
    }
}

@media screen and (max-width:699.98px) {
    .footer {
        flex-direction: column;
    }

    .footer__logo {
        margin-inline: auto;
    }

    .footer-nav {
        flex-direction: column;
        width: 30rem;
        margin: 0 auto;
        gap: 3.6rem;
    }
}