@charset "UTF-8";
.btn-right-box {
  text-align: right;
}

.sched-table tr {
  cursor: pointer;
}

.sched-table tr.sched_select {
  background-color: #d8f4ff;
}

.lesson-table .future {
  cursor: pointer;
}

.lesson-table .future.lesson_select {
  background-color: #bbbfe2;
}

#main .schedule .cal-table .sched_select {
  background-color: #dd021c !important;
}

#lesson_cancel {
  display: inline-block;
  text-align: center;
  border-width: 0px;
  color: #fff !important;
  background-color: #e84152;
  background: -moz-linear-gradient(top, #ea6779 0%, #ea6779 50%, #e84152 50%, #e84152);
  background: -webkit-gradient(linear, left top, left bottom, from(#ea6779), color-stop(0.5, #ea6779), color-stop(0.5, #e84152), to(#e84152));
  padding: 5px 15px;
  font-weight: bold;
  font-size: 1.15rem;
  opacity: 1;
}

#block_booking {
  display: inline-block;
  text-align: center;
  border-width: 0px;
  color: #fff !important;
  background-color: #e84152;
  background-color: #2c67cc;
  background: -moz-linear-gradient(top, #0998e0 0%, #0998e0 50%, #2c67cc 50%, #2c67cc);
  background: -webkit-gradient(linear, left top, left bottom, from(#0998e0), color-stop(0.5, #0998e0), color-stop(0.5, #2c67cc), to(#2c67cc));
  padding: 5px 15px;
  font-weight: bold;
  font-size: 1.15rem;
  letter-spacing: 5px;
  opacity: 1;
}

#lesson_cancel:hover,
#block_booking:hover {
  opacity: 0.7;
  text-decoration: none !important;
}

#lesson_cancel.disabled,
#block_booking.disabled {
  pointer-events: none;
  opacity: 0.6;
}

.cal-table-wrapper {
  overflow: visible;
  position: relative;
  -webkit-overflow-scrolling: auto;
}

.block_booking_box {
  position: -webkit-sticky;
  position: sticky;
  display: block;
  z-index: 99;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
}

.block_booking_box .block_booking_L {
  padding-top: 5px;
}

.block_booking_box .block_booking_R {
  text-align: right;
}

.block_booking_box .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 680px) {
  .cal-table-wrapper {
    overflow: auto;
    position: relative;
    height: 75vh;
  }
}

/* モーダルウインドウ */
#Overlay {
  display: none;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;
}

#Overlay .bg-overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100vh;
  position: absolute;
  width: 100%;
}

#Overlay .dialog {
  background: #fff;
  border-radius: 10px;
  display: none;
  min-height: 200px;
  margin: 0 auto;
  width: 95%;
  max-width: 1000px;
  text-align: left;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#Overlay .dialog .dialog-header {
  padding: 30px 30px 0 30px;
  border-radius: 10px 10px 0 0;
}

#Overlay .dialog .dialog-header h3 {
  margin-top: 0;
  padding-bottom: 15px;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
}

#Overlay .dialog .dialog-inner {
  margin: 10px;
  overflow: auto;
  max-height: calc(100vh - 240px);
}

#Overlay .dialog .dialog-footer {
  padding: 0 30px 30px 30px;
  border-radius: 0 0 10px 10px;
  text-align: center;
}

/* トグルボタン */
.switch__label {
  width: 55px;
  height: 31px;
  position: relative;
  display: inline-block;
  margin-left: 5em;
}

.switch__label_e {
  width: 55px;
  height: 31px; 
  position: relative;
  display: inline-block;
  margin-left: 9em;
}


.switch__txt {
  position: absolute;
  margin-left: -5em;
  top: 3px;
  display: inline-block;
}

.switch__txt_e {
  position: absolute;
  margin-left: -9em;
  top: 3px;
  display: inline-block;
}

.switch__content {
  display: block;
  cursor: pointer;
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  border-radius: 30px;
  height: 31px;
  overflow: hidden;
}

.switch__content:before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 3px);
  height: calc(100% - 3px);
  top: 0;
  left: 0;
  border: 1.5px solid #E5E5EA;
  border-radius: 30px;
  background-color: #e9e9eb;
}

.switch__content:after {
  content: "";
  display: block;
  position: absolute;
  background-color: transparent;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  border-radius: 30px;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.switch__input {
  display: none;
  /* 念のため二重に隠す（display: none が何かに上書きされても効くように） */
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  pointer-events: none;
}

.switch__circle {
  display: block;
  top: 2px;
  left: 2px;
  position: absolute;
  -webkit-box-shadow: 0 2px 6px #999;
  box-shadow: 0 2px 6px #999;
  width: 27px;
  height: 27px;
  border-radius: 20px;
  background-color: #fff;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.switch__input:checked ~ .switch__circle {
  left: 26px;
}

.switch__input:checked ~ .switch__content:after {
  background-color: #3dc45e;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Context Menu */
#context_menu {
  display: none;
  position: fixed;
  z-index: 9999;
  text-align: center;
  min-width: 100px;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.8);
  top: 50%;
  left: 50%;
  margin-left: -50px;
  margin-top: -15px;
}

@media (min-width: 681px) {
  #main .schedule .cal-table .open:hover {
    background-color: #fd4424 !important;
  }
}

@media (max-width: 680px) {
  #main .schedule .cal-table .open:active {
    background-color: #fd4424 !important;
  }
}
/*# sourceMappingURL=202110.css.map */