/*ボタン*/
.btn_8_content{
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    gap: 15px;
}

.button_8{
    width: calc((100% - 15px) / 2);
}

.btn_8_content a{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    border: none;
    border-bottom: solid 5px #0059a0;
    border-radius: 25px;
    background-color: #2589d0;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    transition: .5s ease;
    position: relative;
    padding: 15px;
}


.btn_8_content a::after {
    content: '';
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    right: 20px;
}

.button_8:hover {
    transform: translateY(3px);
    border-bottom-width: 2px;
}

/* 特集一覧 */
.heading-11 {
    font-size: 22px;
    position: relative;
    padding: .5em .7em;
    background-color: #2589d0;
    color: #fff;
}

.feature_list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 24px;
    padding-bottom: 40px;
    margin-top: 30px;
}

.feature_list > li {
    width: 100%;
    -ms-flex-direction: row;
    flex-direction: row;
}

@media screen and (min-width: 600px) {
    .feature_list > li {
        width: calc((100% - 24px) / 2);
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.feature_list > li a {
    display: flex;
    flex-direction: column;
    color: #333;
}

.feature_list > li img {
    width: 100%;
    vertical-align: bottom;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.feature_list > li .name {
    margin: 8px 0;
    line-height: 1.4;
    font-size: 1.5rem;
    font-weight: bold;
}

@media screen and (min-width: 600px) {
    .feature_list > li .name {
        font-size: 1.8rem;
    }
}