#cover {
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: 30vh;
    background-color: #3f88d7;
    z-index: -1;
    display: none;
}

.site-footer {
    position: relative;
    background-image: linear-gradient(0deg, #3f88d7 0%, #81b8f1 100%);
}

.wave-wrapper {
    position: absolute;
    width: 100%;
    height: 100px;
    overflow: hidden;
    line-height: 0;
    fill: #7eb5ef;
    top: -66px;
}

.wave-svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 200%;
    height: 100%;
    animation: waveMove 10s linear infinite;
}

@keyframes waveMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


.footer-container {
    position: relative;
    width: 90%;
    left: 5%;
    padding: 20px;
}


.footer-inner {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

.footer-inner> :first-child {
    margin-right: -20px;
}

/* ロゴ・テキスト */
.footer-logo {
    font-size: 20px;
    margin: 0 0 10px;
    color: #fff;
    letter-spacing: 1px;
}

.footer-text {
    margin: 0;
    line-height: 1.7;
    color: #ffffff;
}

/* 見出し */
.footer-title {
    font-size: 25px;
    margin: 0 0 10px;
    color: #fff;
    letter-spacing: 1px;
    border-bottom: solid .2px #fff;
}

/* リンク */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 15px;
}

.footer-links li+li {
    margin-top: 8px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

/* 下部コピーライト */
.footer-bottom {
    border-top: 1px solid #fff;
    margin-top: 30px;
    padding-top: 12px;
    text-align: center;
}

.footer-bottom p {
    color: #fff;
    font-size: 12px;
}

@media (max-width: 1024px) {
    .footer-inner {
        display: none;
    }

    .footer-inner-mb {
        display: block;
    }
}

@media (min-width: 1025px) {
    .footer-inner {
        display: grid;
    }

    .footer-inner-mb {
        display: none;
    }
}

.footer-flex {
    display: flex;
    justify-content: center;
}

.footer-menu {
    position: relative;
    width: 100%;
    padding: 15px 0;
    text-align: center;
    border: solid 3px #f7f7f7a6;
    text-decoration: none;
    color: #fff;
    margin: 3px;
    border-radius: 15px;
    font-size: 18px;
}

.footer-company {
    position: relative;
    margin: 40px 0;
    display: flex;
}

.footer-item {
    width: 50%;
}

.footer-sns-block {
    position: absolute;
    right: 0;
    bottom: 0;
}

.footer-sns-items {
    display: flex;
}

.footer-sns-item {
    position: relative;
    height: 60px;
    width: 60px;
    display: block;
    margin: 0px 5px;
    padding: 10px;
    background: #fff;
    border-radius: 20px;
    transition: all .2s;
}

.footer-sns-item:hover {
    box-shadow: 1px 1px 10px #00000041;
    transform: translateY(-2px);
}

.footer-sns-item img {
    width: 100%;
    height: 100%;
}

@media (max-width: 800px) {
    .footer-company {
        display: block;
    }

    .footer-item {
        width: 100%;
        margin: 30px 0;
    }

    .footer-sns-block {
        position: relative;
        right: 0;
        bottom: 0;
    }
}