@charset "utf-8";
.thanks-contents .contents-box p {
    font-size: 1.5rem;
    padding: 5vw;
    line-height: 1.7;
}

.thanks-back {
    font-family: "Noto Serif JP", serif;
    background-color: var(--primary-orange, #E04100);
    border: none;
    padding: 10px 25px 10px 10px;
    color: var(--gray0, #fff);
    width: 250px;
    height: 60px;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    margin: 50px auto 0;
}
.thanks-back::after {
    content: '';
    position: absolute;
    top: 48%;
    right: 32px;
    transform: rotate(45deg) translateY(-50%);
    width: 10px;
    height: 10px;
    border-width: 2px 2px 0 0;
    border-style: solid;
    border-color: #fff;
}
.thanks-back:hover {
    background-color: var(--primary-navy, #010022);
    transition: background-color 0.3s;
}


@media (min-width: 768px)  {
    .thanks-contents .contents-box p  {
        padding: 20px;
        text-align: center;
    }
    .thanks-contents {
        padding: 160px 0;
        max-width: 900px;
        width: 80%;
        margin: 0 auto;
    }
    .footer {
        height: 250px;
    }
    .footer a {
        margin-top: 60px;
        margin-bottom: 30px;
        font-size: 1.4rem;
    }
}

