@charset "utf-8";

.sec02 {
    ul {
        li {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;

            picture {
                display: flex;
                justify-content: center;
                width: 80%;
            }

            .left_no {
                position: absolute;
                right: 75%;

                img {
                    height: 3vw;
                }
            }

            p {
                color: #212121;
                font-weight: 500;
                font-size: 1.15vw;
                line-height: 1.5;
                display: flex;
                justify-content: center;
                margin-top: 10px;
                text-align: left;
            }
        }
    }
}


@media screen and (max-width: 767px) {

    .sec02 {
        ul {
            li {
                position: relative;
                display: flex;
                flex-direction: column;
                align-items: center;
    
                picture {
                    display: flex;
                    justify-content: center;
                    width: 80%;
                }

                img {
                    display: flex;
                    justify-content: center;
                    width: 80%;
                }
    
                .left_no {
                    position: absolute;
                    right: 68%;
    
                    img {
                        height: 9vw;
                    }
                }
    
                p {
                    color: #212121;
                    font-weight: 500;
                    font-size: 3.45vw;
                    line-height: 1.5;
                    display: flex;
                    justify-content: center;
                    margin-top: 10px;
                    text-align: left;
                }
            }
        }
    }

}