@charset "UTF-8";

.bus_box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.bus_box section:first-child {
    width: 75%;
}
.bus_box section:last-child {
    width: 25%;
}
.bus_box section:last-child img {
    width: 100%;
}

@media screen and (max-width: 499px) {
.bus_box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.bus_box section:first-child {
    width: 100%;
    margin-bottom: 30px;
}
.bus_box section:last-child {
    width: 100%;
}

}

@media screen and (min-width: 500px) {

}