.fadeUp {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-name: fadeUpAnime
}

.fuwa {
    opacity: 0
}

.section-pc {
    display: block
}

.section-sp {
    display: none
}

a {
    transition: .3s
}

a:hover {
    opacity: .7
}

img {
    height: auto;
    width: 100%
}

.pc-header {
    background: linear-gradient(90deg, #a39fc9 0, #80a7c3 100%);
    position: relative
}

.header-button {
    bottom: 5%;
    height: auto;
    left: 50%;
    max-width: 890px;
    position: absolute;
    text-align: center;
    transform: translateX(-50%);
    width: 65%
}

.header-button:hover {
    opacity: 1
}

.header-button img {
    position: relative
}

.header-button img:first-child {
    transform: translateY(22px);
    width: 35%;
    z-index: 2
}

.header-button img:nth-child(2) {
    transition: .3s;
    z-index: 1
}

.header-button img:nth-child(2):hover {
    opacity: .7
}

.pc-main img {
    vertical-align: middle
}

.pc-img-6 {
    margin-top: 80px;
    position: relative
}

.pc-img-6-companies {
    bottom: 8%;
    height: auto;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 48%
}

.pc-img-7 {
    margin: 80px auto;
    width: 67%
}

.pc-button {
    display: block;
    margin: 0 auto;
    max-width: 890px;
    z-index: 10
}

.pc-button img {
    position: relative;
    z-index: 10
}

.section {
    background-color: #fff;
    height: auto;
    margin: 0 auto;
    max-width: 400px;
    width: 100%
}

.section img {
    display: block
}

.section-1 {
    position: relative
}

.section-1-content {
    bottom: 8%;
    position: absolute
}

.section-1-button-top {
    margin: 0 auto;
    width: 69%
}

.section-1-button {
    display: block;
    margin: 0 auto;
    width: 85%
}

.section-under {
    position: relative
}

.section-under img {
    display: block
}

#section-button {
    background: rgba(255, 255, 255, .5);
    bottom: 0;
    display: block;
    left: 50%;
    opacity: 0;
    padding: 5px 0;
    position: fixed;
    transform: translate(-50%, 200px);
    width: 100%;
    z-index: 10
}

#section-button.UpMove {
    animation: UpAnime .5s forwards
}

#section-button.DownMove {
    animation: DownAnime .5s forwards
}

.button {
    display: none;
    margin: 0 auto;
    max-width: 663px;
    width: 85%;
    z-index: 10
}

.button img {
    position: relative;
    z-index: 10
}

.img-5 {
    margin-top: 20px
}

.img-6 {
    margin-top: 20px
}

.img-7 {
    margin-top: 20px
}

.footer-sp {
    background-color: #fff;
    margin: 0 auto;
    max-width: 400px;
    padding: 0 0 7% 0;
    width: 100%
}

.footer-sp ul {
    display: flex;
    justify-content: center;
    padding: 11% 4%
}

.footer-sp ul li {
    font-size: 13px;
    margin: 0 4%
}

.footer-sp ul li a {
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
    text-decoration: none
}

.footer-logo {
    text-align: center
}

.footer-logo img {
    height: auto;
    width: 32%
}

.footer-copyright {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
    padding: 10% 4%;
    text-align: center
}

@media (max-width:767px) {
    .section-pc {
        display: none
    }

    .section-sp {
        display: block
    }

    body {
        background: linear-gradient(90deg, rgba(163, 159, 201, .6941176471) 0, rgba(128, 167, 195, .6941176471) 100%);
        position: relative
    }

    body::after {
        content: "";
        height: 44px;
        left: 40px;
        position: fixed;
        top: 40px;
        width: 106px;
        z-index: -1
    }

    .pc-button {
        display: none
    }

    #section-button {
        max-width: 400px
    }

    .button {
        display: block
    }
}

@media screen and (max-width:320px) {
    .footer-sp ul li {
        font-size: 1rem
    }
}

@keyframes fadeUpAnime {
    0% {
        opacity: 0;
        transform: translateY(100px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translate(-50%, 200px)
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0)
    }
}

@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translate(-50%, 0)
    }

    to {
        opacity: 1;
        transform: translate(-50%, 200px)
    }
}