@charset "UTF-8";

.Showcase ul {
    line-height: 2.0;
    list-style: disc;
    margin-left: 1.5em;
    margin-top: 0.8em;
}

.Showcase ul li {
    margin-bottom: 0.5em;
}

.Showcase ul li p {
    margin-top: 0;
}

.Showcase_flex {
    height: auto;
    display: flex;
    justify-content: space-between;
    gap: 3em;
}

.flex_column {
    flex-direction: column;
}

.Showcase_img_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    margin-top: 2em;
}

.Showcase_flex figure img {
    max-height: 250px;
    background-size: contain;
    background-repeat: no-repeat;
}

.Showcase_img_flex figure img {
    margin-left: 0;
    max-height: 250px;
}

.max-w-200 figure img {
    max-width: 200px;
    margin-right: auto;
    margin-left: auto;
}

.Showcase_img_arrow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    margin: 2em auto 0;
}

.Showcase_img_arrow figure {
    position: relative;
    width: 18%;
    margin: 0;
    padding: 0;
    text-align: center;
}

.Showcase_img_arrow img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.Showcase_img_arrow figure:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -18px;
    top: 40%;
    transform: translateY(-50%) rotate(-45deg);
    width: 10px;
    height: 10px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    z-index: 1;
}

@media (max-width: 768px) {
    .Showcase_img_arrow {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 60px;
    }

    .Showcase_img_arrow figure {
        width: 90%;
        max-width: 400px;
        margin: 0 auto !important;
    }

    .Showcase_img_arrow figure img {
        margin-left: auto;
    }

    .Showcase_img_arrow figure:not(:last-child)::after {
        top: auto;
        right: auto;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
        width: 15px;
        height: 15px;
    }

    .Showcase_flex {
        flex-direction: column;
    }
}

@media(500px > width) {
    .Showcase_img_flex {
        justify-content: center;
    }
}
