@charset "UTF-8";
@media (max-width: 768px) {
  html body .content-wrap.reserve .reserve-wrap form .form-group .schedule-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE / Edge旧 */
    gap: 0.5rem;
    padding-left: 2rem;
  }
  html body .content-wrap.reserve .reserve-wrap form .form-group .schedule-list .schedule-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 150px;
  }
  html body .content-wrap.reserve .reserve-wrap form .form-group .schedule-list .schedule-item:first-child {
    padding-left: 0;
  }
  html body .content-wrap.reserve .reserve-wrap form .form-group .schedule-list .schedule-item .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: 100%;
  }
}