:root {
    --siteContentWidth: 750px;
}

body {
    background: radial-gradient(
        closest-side at 50% 50%,
        white 0%,
        white 100%
    );
    min-height: 100vh;
}

.siteContent {
    position: relative;
    width: var(--siteContentWidth);
    margin: 0 auto;
    padding: 0px 18rem;
    overflow-x: hidden;
}

@media screen and (max-width: 821px) {
    .siteContent {
        width: 100%;
        padding: 0px 0rem;
    }
}

.btn-arrow {
    position: relative;
}

.btn-arrow:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/icon_btn_arrow.png) center/contain no-repeat;
    right: 1.5rem;
    width: 1.3rem;
    height: 1.3rem;
}

.landingPage__key-visual-image {
    width: 100%;
    position: relative;
    height: auto;
    background: center / contain no-repeat;
}

.landingPage__campaign-image {
    width: 100%;
    position: relative;
    height: auto;
    background: center / contain no-repeat;
}

.pre-release-text {
    padding-top: 2rem;
    padding-bottom:4rem;
    color: #FFFFFF;
    background-color: #122A89;
    font-size: 1.8rem;
    text-align: center;
}