section.subList__author > div {
    width: 85%;
    margin: 4vw auto;
}
section.subList__author picture {
    width: 15%;
}
section.subList__author picture img {
    width: 100%;
    border-radius: 50%;
}

section.subList__author div div div {
    padding: 2rem;
    width: 85%;
}
section:last-child {
    background-color: var(--e4n-background-blue);
    clip-path: polygon(0 130px, 100% 0, 100% 100%, 0% 100%);
    padding-top: 12%;
    padding-bottom: 4%;
}
.subList__moreBtn {
    display: inline-block;
    width: 8vw;
    text-align: center;
    text-decoration: none;
    line-height: 2.5vw;
    outline: none;
    color: var(--e4n-font-white);
    background-color: var(--e4n-accent-red);
    position: relative;
    border: 1px solid var(--e4n-accent-red);
    transition: color 0.5s ease;
    margin: 1vw auto 0;
    display: block;
}

.subList__moreBtn:hover {
    color: var(--e4n-accent-red);
}

.subList__moreBtn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.subList__moreBtn::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: var(--e4n-font-white);
    transform: scaleX(0);
    transform-origin: right;
    transition: all 0.5s ease;
    transition-property: transform;
}

.subList__moreBtn span {
    position: relative;
    font-family: var(--e4n-font-eng);
}

/* スマホ縦表示 (最大 575px) */
@media (max-width: 575px) {
    section:last-child {
        clip-path: polygon(0 8%, 100% 0, 100% 100%, 0% 100%) !important;
        padding-top: 27% !important;
    }
    .subList__author .d-flex {
        flex-direction: column;
    } 
    section.subList__author picture {
        width: 45%;
    }
    section.subList__author div div div {
        padding: 2rem 0;
    }
    .subList__moreBtn {
        font-size: 5vw;
        width: 37vw;
        line-height: 7.5vw;
        margin: 2vw auto 0;
    }
}
/* スマホ横表示 (576px 以上かつ最大 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    section:last-child {
        padding-top: 23%;
    }
    .subList__moreBtn {
        width: 30vw;
        line-height: 6vw;
    }
    .subList__moreBtn span {
        font-size: 1.5rem;
    }
    section.subList__author picture {
        width: 40%;
    }
}
/* タブレット縦表示 (768px 以上かつ最大 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    section:last-child {
        padding-top: 23%;
    }
    .common__sub--contents--wrap ul li img {
        height: 17vw;
    }
    .subList__moreBtn {
        width: 15vw;
    }
    section.subList__author picture {
        width: 30%;
    }
}