html {
    font-size: calc((10 / 1300) * 315vw);
}
form {
    .form-group {
        margin-top: 3.5rem;
        font-weight: var(--font-weight-m-plus-1-regular);
        font-family: var(--font-m-plus-1);
        color: #787878;
        .label-group {
            display: flex;
            align-items: center;
            gap: 1rem;
            span {
                background-color: #178BD3;
                color: #fff;
                font-size: 1.2rem;
                display: inline-block;
                padding: .5rem 1.5rem;
                border-radius: calc(var(--border-radius) / 6);
            }
        }
        input {
            display: block;
            width: 100%;
            margin-top: 1rem;
            border: none;
            padding: 1.25rem 1rem;
            font-size: 1.5rem;
            color: #646464;
            box-sizing: border-box;
            font-weight: var(--font-weight-m-plus-1-regular);
            font-family: var(--font-m-plus-1);
            @media (max-width: 700px) {
                font-size: 1.6rem;
            }
            &::placeholder {
                font-weight: var(--font-weight-m-plus-1-regular);
                font-family: var(--font-m-plus-1);
                color: #B4B4B4;
            }
        }
        .privacy {
            line-height: 2rem;
            font-size: 1.3rem;
            a {
                text-decoration: underline;
            }
        }
        button {
            width: 60%;
            background-color: #178BD3;
            color: #fff;
            font-size: 1.6rem;
            padding: 2rem 0;
            border: none;
            border-radius: 100px;
            cursor: pointer;
            margin: 0 auto;
            display: block;
        }
    }
}
#thanks {
    letter-spacing: 0;
    .head {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 2rem;
        margin: 8rem 0 5rem;
        .image {
            width: 27%;
            img {
                width: 100%;
            }
        }
        p {
            font-size: 2.3rem;
            font-weight: var(--font-noto-bold);
        }
    }
    .text {
        font-size: 1.7rem;
        line-height: 3.5rem;
    }
    .button {
        margin-top: 5rem;
    }
}