/* CSS Document */

/*  ---------------------------------------
thanksページ
-------------------------------------------- */

.thanks__Wrap{
    padding: 50px 0 25px 0;
    text-align: center;
}
@media(max-width: 768px) {
    .thanks__Wrap{
        padding: 25px 0;
    }
}
.thanks__flowWrap{
    padding-bottom: 80px;
}
@media(max-width: 768px) {
.thanks__flowWrap{
    padding-bottom: 50px;
}
}
.thanks__txtWrap{
    max-width: 640px;
    margin: 0 auto;
    width: 90%;
    padding-bottom: 80px;
}
@media(max-width: 768px) {
    .thanks__txtWrap{
        width: 100%;
        padding-bottom: 40px;
    }
}
.thanks__ttl{
    font-size: 30px;
    font-weight: bold;
    padding-bottom: 1em;
    text-align: center;
}
@media(max-width: 768px) {
    .thanks__ttl{
        font-size: max(4vw, 24px);
    }
}
.thanks__txt{
    font-size: 16px;
}
.thanks__txt:not(:first-child){
    margin-top: 1.5rem
}

.thanks__btn{
    display: inline-block;
    background-color: #0029C8;
    color: #fff;
    font-weight: bold;
    line-height: 1.5;
    border-radius: 999px;
    font-size: 18px;
    position: relative;
    width: 100%;
    max-width: 640px;
    padding: 1em;
    transition: all ease .3s;
}
@media(max-width: 960px) {
    .thanks__btn{
        font-size: 16px;
        padding: 5px;
        max-width: 400px;
    }
}
.thanks__btn:hover{
    opacity: 0.7;
}
.thanks__btn::after{
    display: block;
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    border-left: solid 7px #fff;
    border-top: solid 7px transparent;
    border-right: solid 7px transparent;
    border-bottom: solid 7px transparent;
    top: 0;
    bottom: 0;
    right: 31px;
    margin: auto;
}
.thanks__flowImg{
    display: block;
    width: 100%;
    margin: 0 auto;
    max-width: 720px;
}
@media(max-width: 768px) {
    .thanks__flowImg{
        margin-top: 1.5rem
    }
}