:root {
    --siteContentWidth: 750px;
}

body {
    background-image: url(../img/pc_background.webp);
    background-attachment: fixed;
    background-size: 100%;
    background-position: center;
    min-height: 100vh;
    box-shadow: 0px 0px 8px gray;
    background-color: #f8fafc;
}

img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.siteContent {
    width: 37.5rem;
    margin: 0 auto;
    box-shadow: 0px 0px 8px gray;
}

@media screen and (max-width: 821px) {
    .siteContent {
        width: 100%;
    }
}

.landingPage__key-visual-image {
    width: 100%;
    height: auto;
    background: center/contain no-repeat;
}

.qr {
    padding: 3rem;
}

.qr__image {
    margin: 2rem auto 4rem;
    width: 30rem;
    height: 30rem;
}

.qr__text {
    font-size: 1.7rem;
    font-weight: bold;
    background-color: #fff;
}

.qr__caution-text {
    color: #e10000;
}

.text-link {
    color: #367eb3;
    text-decoration: underline;
    text-underline-offset: 0.2rem;
}

/*====================================================================
    キャンペーン概要
    ====================================================================*/
.campaign-overview {
    padding: 4rem 3.5rem 3rem;
    background-color: #fff;
}

.buttonWrap {
    a:not(:first-of-type) {
        margin-top: 2.1rem;
    }
}

.textWrap {
    padding: 2rem 0 2rem;
    font-size: 1.3rem;
    font-weight: 500;
}

.textWrap2 {
    padding-bottom: 2rem;
    font-size: 1.3rem;
    font-weight: 400;
}

.textAnnotation {
    padding-left: 1em;
    text-indent: -1em;
}

/*-----------------------------------------------
    タイトル
    ------------------------------------------------*/

.infoHeader_ruby {
    position: relative;
    font-size: 1.2rem;
    color: #19c9f0;
    z-index: 2;

    &::before {
        content: "";
        position: relative;
        display: inline-block;
        width: 1.3rem;
        height: 1.2rem;
        margin-right: 0.4rem;
        top: 0.1rem;
        background-image: url(../img/diamond_blue.svg);
        background-repeat: no-repeat;
        background-size: contain;
    }
}

.infoHeader_title {
    position: relative;
    padding: 0.2rem 0 0.8rem;
    font-size: 2rem;
    font-weight: bold;
    z-index: 1;

    &::before {
        content: "";
        position: absolute;
        display: inline-block;
        left: 0;
        bottom: 0;
        width: 10.6rem;
        height: 0.3rem;
        background-color: #19c9f0;
        border-radius: 0.2rem;
    }
}

.infoHeader_title[icon-type="top"] {
    &::after {
        content: "";
        position: absolute;
        width: 8rem;
        height: 7rem;
        top: -2.5rem;
        right: 0rem;
        background-image: url(../img/bg_icon_circle.svg),
            url(../img/bg_icon_triangle.svg);
        background-position: left top, 2rem 0.5rem;
        background-size: 2.6rem 2.5rem, 6rem 6.1rem;
        background-repeat: no-repeat;
        z-index: -1;
    }
}

.modal__box {
    padding: 2rem 0 2rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.q-modal__boxTitle {
    width: 100%;
    padding: 0.6rem 1rem;
    /* margin-bottom: 1.6rem; */
    margin: 0;
    font-size: 1.4rem;
    letter-spacing: 0.12em;
    font-weight: bold;
}

.modal__textBox {
    letter-spacing: 0.12em;
    line-height: 1.8;
}

.modal__bodyTextNumber {
}

.btn-push {
    display: block;
    text-align: center;
    text-decoration: none;
    position: relative;
    margin-bottom: 2.1rem;
    width: 100%;
    padding: 1.4rem 4rem;
    font-weight: bold;
    font-size: 1.6rem;
    line-height: 1.2;
    border-radius: 1rem;
    color: #252525;
    border: 0.1rem solid #252525;
    transition: 0.3s ease-in-out;
    box-shadow: 0.4rem 0.4rem #fffa0f, 0.4rem 0.4rem 0 0.1rem #252525;
    background: #fff 0% 0% no-repeat padding-box;

    &.disabled,
    &:disabled {
        background: #e8e8e8;
        opacity: 1;
        box-shadow: 0.4rem 0.4rem #a1a1a1, 0.4rem 0.4rem 0 0.1rem #252525;
    }

    &:hover:not(:disabled):not(.disabled):not([type="none"]) {
        box-shadow: none;
        transform: translate(0.4rem, 0.4rem);
    }

    button:not(:disabled):not(.disabled):active,
    button:not(:disabled):not(.disabled).active:focus {
        /* 選択された時アウトラインを表示させない */
        outline: none !important;
        box-shadow: none;
    }

    p {
        margin-top: 0.4rem;
        font-size: 1.2rem;
        font-weight: normal;
    }
}

.productInfo_btnWrap {
    padding: 0 3rem 2rem;
}

.btn-push-up-arrow {
    &::after {
        content: "";
        display: inline-block;
        border-style: solid;
        border-width: 0 0.8rem 1rem 0.8rem;
        border-color: transparent transparent #252525 transparent;
        display: inline-block;
        width: 0;
        height: 0;
        position: absolute;
        top: 50%;
        right: 2rem;
        transform: translateY(-50%);
    }

    &[btn-size="small"] {
        &::after {
            left: 1rem;
        }
    }

    &[icon-pos="left"] {
        &::after {
            left: 2rem;
            right: auto;
        }
    }

    &[icon-pos="right"] {
        &::after {
            left: auto;
            right: 2rem;
        }
    }
}

.btn-push-bottom-arrow {
    &::after {
        content: "";
        display: inline-block;
        border-style: solid;
        border-width: 1rem 0.8rem 0 0.8rem;
        border-color: #252525 transparent transparent transparent;
        display: inline-block;
        width: 0;
        height: 0;
        position: absolute;
        top: 50%;
        right: 2rem;
        transform: translateY(-50%);
    }

    &[icon-pos="left"] {
        &::after {
            left: 2rem;
            right: auto;
        }
    }

    &[icon-pos="right"] {
        &::after {
            left: auto;
            right: 2rem;
        }
    }
}

.btn-push-right-arrow {
    &::after {
        content: "";
        display: inline-block;
        border-style: solid;
        border-width: 0.8rem 0 0.8rem 1rem;
        border-color: transparent transparent transparent #252525;
        display: inline-block;
        width: 0;
        height: 0;
        position: absolute;
        top: 50%;
        right: 2rem;
        transform: translateY(-50%);
    }

    &[icon-pos="left"] {
        &::after {
            left: 2rem;
            right: auto;
        }
    }

    &[icon-pos="right"] {
        &::after {
            left: auto;
            right: 2rem;
        }
    }
}

.btn-push-left-arrow {
    &::after {
        content: "";
        display: inline-block;
        border-style: solid;
        border-width: 0.8rem 1rem 0.8rem 0;
        border-color: transparent #252525 transparent transparent;
        display: inline-block;
        width: 0;
        height: 0;
        position: absolute;
        top: 50%;
        left: 2rem;
        transform: translateY(-50%);
    }

    &[icon-pos="left"] {
        &::after {
            left: 2rem;
            right: auto;
        }
    }

    &[icon-pos="right"] {
        &::after {
            left: auto;
            right: 2rem;
        }
    }
}

.btn-copy-icon {
    &:after {
        content: "";
        display: inline-block;
        position: absolute;
        right: 2rem;
        width: 1.8rem;
        height: 1.8rem;
        background: url(../img/icon_copy.svg);
        background-repeat: no-repeat;
        background-size: contain;
    }
}
