.wcasestudyparagraph-block.hero {
    padding: 160px 0;
    background-color: transparent;
}
.wcasestudyparagraph-block.hero.white {
    background-color: #fff;
}

.wcasestudyparagraph-block__container {
    display: flex;
    justify-content: space-between;
    gap: 160px;
}

.wcasestudyparagraph-block__paragraphs {
    min-width: 45.892857142vw;
    max-width: 45.892857142vw;
}

.wcasestudyparagraph-block__contents-box-wrapper {
    position: relative;
}
.wcasestudyparagraph-block__contents-box {
    position: -webkit-sticky; /* for Safari */
    position: sticky;
    top: 80px;
}

.wcasestudyparagraph-block__p {
    margin-bottom: 60px;
}
.wcasestudyparagraph-block .wcasestudyparagraph-block__p:last-child {
    margin-bottom: 0;
}

.wcasestudyparagraph-block__title {
    font-size: 36px;
    line-height: 50px;
    color: #0E1529;
    margin-bottom: 20px;
}

.wcasestudyparagraph-block__content > p {
    font-weight: 350;
    font-size: 18px;
    line-height: 34px;
    color: #4D515B;
    padding-bottom: 20px;
}
.wcasestudyparagraph-block__content > p:last-child {
    padding-bottom: 0;
}

.wcasestudyparagraph-block__contents-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    color: #0E1529;
    margin-bottom: 32px;
}

.wcasestudyparagraph-block__contents-list {
    padding: 0;
    margin: 0;
    list-style: none;
    counter-reset: li; /* Set a counter named 'section', and its initial value is 0. */
}
.wcasestudyparagraph-block__contents-list li {
    margin-bottom: 15px;
    display: flex;
}
.wcasestudyparagraph-block__contents-list li::before {
    counter-increment: li;
    content: counter(li) ". ";
    margin-right: 4px;
    font-weight: 350;
    font-size: 18px;
    line-height: 30px;
    color: #0085FF;
}
.wcasestudyparagraph-block__contents-list li a {
    font-weight: 350;
    font-size: 18px;
    line-height: 30px;
    color: #0085FF;
    text-decoration: none;
    display: inline-block;
}
.wcasestudyparagraph-block__contents-list li a:hover {
    text-decoration: underline;
}

@media (max-width: 1439px) {
    .wcasestudyparagraph-block__container {
        gap: 100px;
    }
}

@media (max-width: 1365px) {
    .wcasestudyparagraph-block__title {
        font-size: 26px;
        line-height: 40px;
    }

    .wcasestudyparagraph-block__content > p {
        font-size: 16px;
        line-height: 32px;
    }
}

@media (max-width: 992px) {
    .wcasestudyparagraph-block__container {
        gap: 0;
    }
    
    .wcasestudyparagraph-block__paragraphs {
        min-width: calc(100% - 60px);
        max-width: calc(100%- 60px);
    }

    .wcasestudyparagraph-block__contents-box-wrapper {
        min-width: 60px;
        max-width: 60px;
    }

    .wcasestudyparagraph-block__contents-title {
        display: none;
    }

    .wcasestudyparagraph-block__contents-list li {
        position: relative;
    }
    .wcasestudyparagraph-block__contents-list li a {
        width: 50px;
        height: 50px;
        overflow: hidden;
        opacity: 0;
        margin-left: auto;
    }

    .wcasestudyparagraph-block__contents-list li::before {
        font-size: 28px;
        display: flex;
        width: 50px;
        height: 50px;
        justify-content: center;
        align-items: center;
        border: 1px solid #D7E2EF;
        position: absolute;
        top: 0;
        right: 0;
    }
}

@media (max-width: 767px) {
    .wcasestudyparagraph-block__title {
        font-size: 24px;
        line-height: 36px;
    }
    .wcasestudyparagraph-block__content > p {
        font-size: 14px;
        line-height: 22px;
    }
}