@charset "UTF-8";
body{
    margin: 0;
}

.thanks_float_button{
    position: fixed;
    transform: translate(-50%, -50%);
    top: 90%;
    left: 90%;
    width: fit-content;
    height: fit-content;
}

.thanks_logo{
    display: block;
    width: 212px;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

.thanks_header_logo{
    margin: 1em 1em 0.5em;
}

.thanks_container{
    background-color: var(--bgcolor-main);
}

.thanks_contents{
    background-color: white;
    padding: 2em 5%;
}

.thanks_title{
    padding: 0.7em 5%;
}

.thanks_progress{
    margin: 3em auto;
}

.thanks_msg_container{
    text-align: center;
    font-weight: bold;
    font-size: 1.3em;
    padding: 1em 0 2em;
}

.thanks_return_button{
    background-color: rgb(128, 128, 128);
    position: relative;
    border-radius: 10em;
    margin: auto;
    width: fit-content;
    display: block;
    text-decoration: none;
    color: white;
    font-size: 1.5em;
}

.thanks_return_button::after {
    transform: translate(-50%, -50%) rotate(-90deg);
    left: 10%;
    content: "▲";
    position: absolute;
    top: 50%;    
}

.thanks_footer_container{
    background-color: rgb(247, 189, 161);
    width: 100%;
    margin: auto;
    text-align: center;
}

.thanks_footer_logo{
    margin: auto;
    padding: 2em 0;
}

.thanks_footer_copyright{
    background-color: rgb(50, 89, 73);
    color: white;
    width: 100%;
    height: 5em;
}

.thanks_company_infomation{
    padding: 0 0 2em 0;
}

.thanks_privacy_policy{
    padding: 1em 0;
}
/* PC */
@media screen and (min-width: 769px) {
    .thanks_container{
        padding: 4em 10em;
    }

    .thanks_return_button{
        padding: 1em 5em;
    }

    .thanks_return_button::after {
        font-size: 1em;
    }

    .thanks_title{
        font-size: 1.5em;
    }

    .thanks_float_button > img{
        width: 70px;
    }

    .thanks_progress_style{
        width: 300px;
    }
}
/* SP */
@media screen and (max-width: 768px) {
    .thanks_container{
        padding: 0em;
    }

    .thanks_return_button{
        padding: 0.5em 2em;
    }

    .thanks_return_button::after {
        font-size: 0.8em;
    }

    .thanks_title{
        font-size: 1em;
    }

    .thanks_float_button > img{
        width: 70px;
    }

    .thanks_progress_style{
        width: 85%;
        max-width: 250px;
    }
}