.campaign {
    background-color: #FFF;
}

.js-campaign {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 2s ease, transform 2s ease;
}

.js-campaign.animate {
    opacity: 1;
    transform: translateY(0);
}

.campaign__title {
    color: #222;
    font-family: Futura, Jost;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1px;
    text-align: center;
}

.campaign__subtitle {
    color: #9D9D9D;
    font-family: "Yu Gothic", "Noto Sans JP", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 2.4px;
    padding-bottom: 20px;
    text-align: center;
}

.campaign__link-wrapper {
    padding-top: 32px;
    text-align: center;
}

.campaign__campaign-link {
    display: inline-block;
    padding: 0 16px;
}

.campaign__link-wrapper img {
    width: 100%;
    max-width: 560px;
}

@media screen and (min-width: 768px) {
    .campaign__title {
        font-size: 24px;
    }

    .campaign__subtitle {
        font-size: 16px;
    }

    .campaign__link-wrapper {
        padding-top: 48px;
    }
}