.step__wrap {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.area__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
}

.area__content {
    width: 290px;
    display: flex;
    flex-direction: column;
    gap: 1em;
    align-items: center;
    background: var(--base__color);
    padding: 1em;
}

.area__content img {
    width: 250px;
    height: 250px;
    object-fit: contain;
}

.step__content {
    background:var(--base__color2);
    display: flex;
    flex-direction: column;
    gap: 1em;
    padding:1em;
}

.step__inner{
    display: flex;
    flex-direction: column;
}

.step__no {
    letter-spacing: 0.1em;
    background: var(--blue);
    padding: 0.1em 0.3em;
    font-weight: 700;
    color:var(--white);
}

.free {
    font-size: 0.8em;
    letter-spacing: 0.1em;
    color:var(--white);
    background: var(--red);
    padding: 0.1em 0.3em;
    font-weight: 400;
    text-wrap: nowrap;
    margin:0 0 0 0.5em;
}

.arrow{
    text-align: center;
    border-top: 10px solid var(--blue);
    margin-bottom:2em;
}

.arrow img{
    width:100px;
}

@media screen and (max-width:900px) {

    .area__content {
        display:grid;
        grid-template-columns: 1fr 2fr;
        width: 100%;
    }
    .area__content img {
        width: 80px;
        height: 80px;
    }

    .step__no {
        text-align: center;
        width:100%;
    }
    .step__content{
        padding:0.5em;
    }
}