.buttonarea {
    text-align: center;
    margin-top: 100px;
    margin-bottom: 120px;
}

.page_title {
    font-size: clamp(24px, 3vw, 32px);
    color: #4A4A3D;
    font-family: "Lora", serif;
    margin: 30px 0px;
}

.title {
    font-size: clamp(20px, 3vw, 24px);
    color: #4A4A3D;
    margin-bottom: 50px;
}

.image_box {
    margin-top: 120px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 20px;
}

.main_image {
    width: 100%;
    height: auto;
}

.slide_image {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 570px) {
    .image_box {
        margin-top: 120px;
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr 1fr;
        gap: 60px 20px;
    }

    .page_title {
        text-align: center;
    }

    .title {
        text-align: center;
    }

    .swiper_box {
        position: relative;
        margin: 0px 20px;
    }

    .swiper-pagination {
        bottom: -30px !important;
    }

    .swiper-button-next {
        right: -30px !important;
    }

    .swiper-button-prev {
        left: -30px !important;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 20px;
        color: #4A4A3D;
    }

}