@charset "UTF-8";

/* ====================
thanks
==================== */
.thanks {
    width: 93%;
    max-width: 349px;
    margin: 200px auto 0;
}

.thanks__topic {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary, #FF6A06);
    text-align: center;
}

.thanks__text {
    margin-top: 50px;
    font-size: 1.3rem;
    line-height: 2.08;
    text-align: center;
}

.thanks__text a {
    border-bottom: solid 1px;
}

.thanks__btn {
    width: 259px;
    margin: 50px auto 0;
    border: solid 1px var(--color-primary, #FF6A06);
    border-radius: 10px;
    background-color: var(--color-white, #FFFFFF);
    transition: 0.2s;
}

.thanks__btn__text {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 50px;
    color: var(--color-primary, #FF6A06);
    text-align: center;
}

/* hover */
.thanks__btn:hover {
    transform: scale(1.05);
    border: solid 1px var(--color-white, #FFFFFF);
    background-color: var(--color-primary, #FF6A06);
}

.thanks__btn__text:hover {
    color: var(--color-white, #FFFFFF);
}

/* thanks pc */
@media screen and (min-width:769px) {
    .thanks {
        width: 100%;
        max-width: 584px;
        margin: 275px auto 0;
    }

    .thanks__topic {
        font-size: 2.8rem;
        line-height: 1.93;
    }

    .thanks__text {
        margin-top: 40px;
        font-size: 1.5rem;
        line-height: 1.8;
    }

    .thanks__btn__text {
        line-height: 64px;
    }
}

/* ====================
footer
==================== */
.footer {
    position: fixed;
    bottom: 0;
}