/*ボタン*/
.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;
}