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

.title {
    margin-bottom: 15px;
    position: relative;
    font-size: clamp(20px, 3vw, 24px);
}

.title::before {
    content: "";
    position: absolute;
    top: 8px;
    display: block;
    width: 1px;
    height: 60%;
    background: #4A4A3D;
    left: -0.6%;
    transform: rotate(30deg)
}

.latest {
    margin-bottom: 120px;
}

.latest_title {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.latest_text {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 500;
}

.latest_text:hover {
    opacity: 0.6;
    transition: 0.5s;
}

.latest_status {
    font-size: clamp(13px, 3vw, 16px);
    padding: 0px 30px;
    background-color: #E8E8E8;
    border: solid 1px #4A4A3D;
}

.image_box {
    text-align: center;
    margin-bottom: 45px;
}

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

.latest_bottom {
    display: flex;
    justify-content: center;
    column-gap: 4%;
}

.bottom_image {
    width: 48%;
    height: auto;
}

.past_container {
    display: flex;
    margin-bottom: 60px;
}

.past_image {
    max-width: 900px;
    width: 100%;
    height: auto;
    transition: 0.5s;
}

.past_image:hover {
    transform: scale(1.05);
    transition: 0.5s;
}

.past_link {
    max-width: 900px;
    width: 100%;
    overflow: hidden;
}

.past_box {
    background-color: #fff;
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.past_text {
    max-width: 200px;
    width: 100%;
    font-size: clamp(16px, 3vw, 20px);
    line-height: 180%;
}

.past_latter {
    margin-bottom: 30px;
    margin-left: 8%;
}

.past_info {
    font-size: clamp(13px, 3vw, 16px);
    line-height: 180%;
}

@media screen and (max-width: 570px) {
    .main_image {
        width: 100%;
    }

    .latest_bottom {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 20px;
    }

    .bottom_image {
        width: 100%;
    }

    .past_container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 60px;
    }

    .past_image {
        width: 100%;
    }

    .past_box {
        background-color: #fff;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .past_text {
        max-width: 300px;
        width: 100%;
        font-size: clamp(16px, 3vw, 32px);
        margin: 10px 0px;
    }

}