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

.mv_image {
    width: 100%;
    position: relative;
}

/* メインコンテンツ */
.item {
    margin-bottom: 120px;
}

.item_container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.item_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    margin-bottom: 100px;
}


.item_title {
    border-bottom: solid 1px #DCD444;
    width: 100%;
    margin-bottom: 25px;
    text-align: center;
    font-family: "Lora", serif;
}

.item_image {
    width: 100%;
    height: auto;
    transition: 0.5s;
}

.item_image_box {
    width: 50%;
    overflow: hidden;
}

.item_image_box.bb {
    width: 100%;
    overflow: hidden;
}


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

.item_image.zoom {
    width: 100%;
}

.item_inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 43px 45px;
    padding-left: 27px;
    padding-right: 27px;
}

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

    .item_inner {
        display: flex;
        flex-direction: column;
        padding: 0px;
    }

    .buttonarea {
        margin-top: 0px;
    }
}