@charset "UTF-8";
.purchasing_process_caption{
    width: fit-content;
    margin: auto;
    font-size: 2em;
    color: black;
}

.purchasing_process_container{
    width: 100%;
    height: fit-content;
    padding: 1.5em 0;
}

.purchasing_process_box{
    position: relative;
    box-shadow: 0 0 10px 1px rgb(0 0 0 / 50%);
    background-color: white;
    border-radius: 15px;
}.purchasing_process_box > img{
    padding: 10px 10px 0 10px;
    width: 95%;
    height: auto;
    display: block;
    margin: auto;
}.purchasing_process_box > a{
    padding: 10px;
    display: block;
}.purchasing_process_box > a > img{
    width: 100%;
    height: auto;
}

.purchasing_process_box-image{
    position: absolute;
    transform: translate(-50%, -50%);
    top: 45%;
    left: 91.5%;
    width: 35%;
}.purchasing_process_box-image > img{
    width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    .purchasing_process_box{
        width: 25%;
    }.purchasing_process_box:nth-child(1){
        margin: auto 2em auto auto;
    }.purchasing_process_box:nth-child(2){
        margin: auto auto auto 2em;
    }

}@media (max-width: 767px) {
    .purchasing_process_box{
        width: 90%;
    }.purchasing_process_box:nth-child(1){
        width: 75%;
        margin: auto auto 3em auto;
    }.purchasing_process_box:nth-child(2){
        width: 75%;
        margin: 3em auto auto auto;
    }
}