@charset "UTF-8";

.bimg ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.bimg ul li:nth-child(1) {
    width: 60%;
}
.bimg ul li:nth-child(2) {
    width: 35%;
}
.bimg img {
    width: 100%;
}
.bimg h4 {
    background-color: #fff4fa;
    text-align: center;
    margin-bottom: 1em;
    line-height: 1;
    padding: 0.5em 0;
}
.bimg p {
    text-align: center;
    margin-top: 0.5em;
}
@media screen and (max-width: 499px) {
.bimg ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: column-reverse;
}
.bimg ul li:nth-child(1) {
    width: 100%;
}
.bimg ul li:nth-child(2) {
    width: 100%;
    margin-bottom: 1em;
}
}

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

}