@charset "utf-8";

#thanks {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#thanks::before {
    content: "";
    display: block;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    position: fixed;
    right: 14%;
    background-image: radial-gradient(circle, #E7C438 -90%, /* 中心 (0%): 濃い色（不透明） */ transparent 70% /* 外側 (100%): 完全に透明 */);
    z-index: -1;
    top: 35%;
}

#thanks::after {
    content: "";
    display: block;
    width: 13rem;
    height: 13rem;
    border-radius: 50%;
    position: fixed;
    top: 8%;
    right: 9%;
    background-image: radial-gradient(circle, #1C92B2 -90%, /* 中心 (0%): 濃い色（不透明） */ transparent 70% /* 外側 (100%): 完全に透明 */);
    z-index: -1;
}

#thanks .thanks-content {
    background-color: #F5F5F5;
    border-radius: 0.62rem;
    padding: 3.13rem;
}

@media screen and (max-width: 800px) {
    #thanks .thanks-content {
        padding: 5%;
    }
}


#thanks .thanks-content .title-box {
    margin-bottom: 3.13rem;
}

#thanks h4 {
    margin-bottom: 1.25rem;
    text-align: center;
}

@media screen and (max-width: 414px) {
    #thanks h4 {
        text-align: left;
    }
}

#thanks .text-area {
    text-align: center;
}

@media screen and (max-width: 414px) {
    #thanks .text-area {
        text-align: justify;
    }
}

#thanks .btn_add {
    text-align: center;
    margin-bottom: 1.88rem;
}

#thanks .common-btn {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

#thanks .common-btn a {
    padding-left: 0;
}

#thanks .common-btn a::after {
    display: none;
}

#thanks .logo-flex {
    display: flex;
    justify-content: center;
}