.social-link{
    display: none;
}


.contact-page .inner {
    position: relative;
    background: linear-gradient(
      -45deg,
      #ff9a9e,
      #fad0c4,
      #fbc2eb,
      #a6c1ee,
      #84fab0,
      #8fd3f4
    );
    background-size: 400% 400%;
    animation: rainbowFlow 30s ease infinite;
    /* filter: blur(40px); */
    border-radius: 20px;
}

.custom-footer .bottom-footer::before {
    background: linear-gradient(
        -45deg,
        #ff9a9e,
        #fad0c4,
        #fbc2eb,
        #a6c1ee,
        #84fab0,
        #8fd3f4
    )!important;
    background-size: 400% 400%;
    animation: rainbowFlow 30s ease infinite;
    filter: blur(20px);
    left: -10%;
    width: 150%;
}
/* 背景アニメーション */
@keyframes rainbowFlow {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
}

.scroll-down {
    display: none;
}