@charset "UTF-8";
.center_img.column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    max-width: 360px;
    margin-inline: auto;
    .arrow_triangle {
        display: inline-block;
        margin: 0;
        background: #666;
        height: 24px;
        width: 64px;
        clip-path: polygon(0 0, 100% 0, 50% 100%);
    }
    figure {
        margin-bottom: 0;
    }
    img {
        margin-bottom: 0;
    }
}
@media (min-width: 1024px) {
    .center_img.column {
        max-width: inherit;
        gap: 12px;
        &.col3 {
            flex-direction: row;
            justify-content: space-between;
            .arrow_triangle {
                height: 56px;
                width: 32px;
                clip-path: polygon(0 0, 100% 50%, 0 100%);
            }
        }
    }
}