.paragraph {
    display: flex;
    /* padding: 30px 15px; */
    position: relative;
    gap: 100px;
}
.paragraph.img-lrc-background .paragraph-img img {
    opacity: 0;
}
.paragraph.txt-top .paragraph-txt {
    justify-content: flex-start !important;
}
.paragraph .paragraph-img {
    width: 100%;
    flex: 1 0 50%;
    background-blend-mode: darken;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.paragraph .paragraph-img img {
    display: block;
    width: 100%;
    min-width: 200px;
    max-width: 50vw;
    object-fit: scale-down;
}

/* section image as background  */
.paragraph.img-background {
    overflow: hidden;
    padding: 50px 30px;
    color: #fff;
}
.paragraph.img-background .ttl-w-divider {
    color: #fff;
}
.paragraph.img-background .paragraph-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}
.paragraph.img-background .paragraph-img img {
    max-width: unset;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    object-fit: cover;
    filter: brightness(0.8);
}
.paragraph.img-background .paragraph-txt {
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background-color: rgb(0 0 0 / 24%);
    padding: 3% 10%;
    border: 1px solid rgba(255, 255, 255, 0.248);
    box-shadow: 0 0 40px -20px black;
    backdrop-filter: blur(6px);
}

/* section image right  */
.paragraph.img-r {
    flex-direction: row-reverse;
}
.paragraph.img-r .paragraph-txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* section image left  */
.paragraph.img-l .paragraph-txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* section image center  */
.paragraph.img-c {
    flex-direction: column;
    gap: 20px;
}
.paragraph.img-c .paragraph-img img {
    width: auto;
    max-width: 100%;
    margin: 0 auto;
}

.paragraph ul {
    list-style: none;
    column-count: 2;
}
.paragraph ul li {
    position: relative;
    padding: 10px 0 5px 20px;
}
.paragraph ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
}

@media only screen and (max-width: 1150px) {
    .paragraph ul {
        column-count: unset;
        margin-top: 15px;
    }
}

@media only screen and (max-width: 1100px) {
    .paragraph {
        gap: 30px;
    }
}

@media only screen and (max-width: 780px) {
    .paragraph .paragraph-img img {
        max-width: 100%;
    }
    .paragraph.img-r {
        flex-direction: column;
    }
    .paragraph.img-l {
        flex-direction: column;
    }
}

@media only screen and (max-width: 560px) {
    .paragraph ul {
        column-count: unset;
    }
}
