footer {
    background-color: white;
    padding: 40px;
}
.acupuncture-footer {
    display: flex;
    flex: 1;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}
.acupuncture-footer__list {
    color: rgb(255, 110, 43);
    display: flex;
    flex: 1 1 255px;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.acupuncture-footer__list-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}
.acupuncture-footer__schedule-list {
    color: rgb(255, 110, 43);
    display: flex;
    flex: 1 1 255px;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.acupuncture-footer__schedule-list-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}
.acupuncture-footer__logo {
    display: none;
    flex: 1 1 255px;
    flex-wrap: wrap;
}
.acupuncture-footer__logo-img {
    display: none;
    width: 200px;
    flex: 1;
    flex-wrap: wrap;
}
@media (min-width: 60rem) {
    .acupuncture-footer__logo {
        display: flex;
    }
    .acupuncture-footer__logo-img {
        display: flex;
    }
}