.btn_nav {
    display: inline-flex;
    padding: 12px 20px;
    text-decoration: none;
    background-color: var(--primary-500);
    border-radius: var(--space-8);
}
.btn_nav span {
    font-size: var(--font-size-button);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-2);
    color: var(--gray-100);
}
.swiper_ctrl_btn {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid #E5E5E5;
    border-radius: var(--space-12);
    cursor: pointer;
}
.swiper_ctrl_btn img {
    height: 12px;
}
.swiper_ctrl_btn.swiper-button-disabled {
    cursor: default;
    pointer-events: none;
    opacity: 1;
}
.swiper_ctrl_btn.swiper-button-disabled img {
    content: url("../../../../image/icon/icon_arrow_off.png");
}
.swiper_prev img {
    transform: rotate(180deg);
}

.btn_view {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    background-color: var(--accent-500);
    border-radius: var(--space-8);
    font-size: var(--font-size-caption);
    color: var(--color-surface);
    line-height: var(--line-height-3);
    font-weight: var(--font-weight-semibold);
}
.btn_view:hover {
    background-color: var(--accent-600);
}

@media screen and (max-width: 1024px) {
    .btn_view {
        height: 36px;
    }
}