#concept {
    /* overflow-x: hidden; */
}

/*FV*/
#concept #fv {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    margin: 40px 0;
}
#concept #fv .title {
    width: 34%;
    font-size: 1.5vw;
    font-weight: 400;
    line-height: 2em;
    text-align: center;
}
#concept #fv .title span {
    display: block;
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-size: 300%;
    letter-spacing: .1em;
}
#concept #fv .title span img {
    display: block;
    margin: auto;
    height: 40px;
    filter: invert(26%) sepia(11%) saturate(400%) hue-rotate(221deg) brightness(94%) contrast(84%);
}

#concept #fv figure {
    width: 66%;
    overflow: hidden;
}

#concept #fv figcaption {
    position: absolute;
    right: 1em;
    bottom: 1em;
    font-size: 80%;
    color: var(--bodycolor);
}



/*CFA*/
#concept #cfa {
    padding: 100px 0;
    overflow-x: hidden;
}

#concept #cfa .headcopy {
    padding-top: 30px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 500;
    font-size: 280%;
    letter-spacing: .1em;
    text-align: center;
}
#concept #cfa .headcopy img {
    display: block;
    margin: auto;
    height: 25px;
}
#concept #cfa .bodycopy {
    padding-top: 10px;
    font-size: 230%;
    letter-spacing: .1em;
    text-align: center;
}
#concept #cfa .explanation {
    display: flex;
    flex-direction: column;
    gap: 3em;
    padding: 80px 0;
    font-size: 160%;
    line-height: 3em;
    text-align: center;
}

#concept #cfa video {
    display: block;
    margin: 80px auto 0;
    width: 100%;
    max-width: 640px;
    outline: var(--bodycolor) solid 4px;
    outline-offset: -2px;
}


/*POINTS*/
#concept #points {
    padding-bottom: 94px;
    overflow: hidden;
}
#concept #points ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 160px;
}
#concept #points ul li {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 40px;
    width: 100%;
}
#concept #points ul li:nth-child(2n) {
    flex-direction: row-reverse;
}

#concept #points ul li figure {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
#concept #points ul li figure img {
    display: block;
}
#concept #points ul li figure figcaption {
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 80%;
    color: var(--bodycolor);
}

#concept #points ul li:nth-child(1) figure {
    max-width: 700px;
    margin-left: -10vw;
}
/* #concept #points ul li:nth-child(2) {
    align-items: flex-end;
} */
#concept #points ul li:nth-child(2) figure {
    max-width: 520px;
}
#concept #points ul li:nth-child(3) figure {
    max-width: 680px;
    margin-left: -10vw;
}
#concept #points ul li:nth-child(4) {
    align-items: flex-end;
}
#concept #points ul li:nth-child(4) figure {
    max-width: 600px;
}
#concept #points ul li:nth-child(5) {
    align-items: flex-end;
}
#concept #points ul li:nth-child(5) figure {
    max-width: 630px;
}

#concept #points ul li .bodycopy {
    height: fit-content;
    font-size: 140%;
    line-height: 2.2em;
    text-align: left;
}
/* #concept #points ul li:nth-child(2n-1) .bodycopy {
    position: relative;
} */
#concept #points ul li:nth-child(2n-1)::before {
    content: "";
    position: absolute;
    left: calc((100vw - 1000px)/2*(-1));
    top: 20%;
    z-index: -1;
    width: 100vw;
    height: 100%;
    background-color: var(--themecolor);
    background-image: url(../../common/img/bg.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}



@media all and (max-width: 999px) {

    #concept #cfa {
        padding: 0;
    }
    #concept #cfa .headcopy {
        padding-top: unset;
        font-size: 140%;
    }
    #concept #cfa .headcopy img {
        height: 15px;
    }
    #concept #cfa .bodycopy {
        font-size: 120%;
    }
    #concept #cfa .explanation {
        gap: 2.5em;
        padding: 10% 0;
        font-size: 90%;
        line-height: 2.5em;
        letter-spacing: 0;
    }
    #concept #cfa video {
        margin: 10% auto 0;
    }

    #concept #points ul {
        gap: 40px;
    }
    #concept #points ul li {
        gap: 5%;
    }
    #concept #points ul li > * {
        max-width: 50% !important;
    }
    #concept #points ul li:nth-child(2n-1) {
        margin-bottom: 15px;
    }
    #concept #points ul li:nth-child(2n-1)::before {
        /* display: none; */
        width: 104%;
        left: -2%;
        background-attachment: unset;
    }

    #concept #points ul li .bodycopy {
        font-size: 80%;
        line-height: 1.5em;
    }

    #concept #points ul li:nth-child(2n-1) .bodycopy {
        padding-right: 1em;
    }
    /* #concept #points ul li:nth-child(2n) {
        padding-bottom: 30px;
    } */
    #concept #points ul li:nth-child(2n) .bodycopy {
        padding-left: 1em;
    }

    #concept #points ul li:nth-child(n) figure {
        margin-right: 0;
        margin-left: 0;
    }
    #concept #points ul li:nth-child(2n) figure {
        width: 80%;
    }

    #concept #points {
        padding-bottom: 20%;
    }


}