@charset "UTF-8";

.link_btn {
  color: #fff;
  display: inline-block;
  padding: 20px 80px;
  max-width: 330px;
  text-align: center;
  font-size: 16px;
  width: 100%;
}

.link_btn.--line {
  background-color: #00c300;
}

.table_calendar {
  width: 100%;
  color: #35383b;
  font-size: 11px;
  margin: 40px auto 20px;
  line-height: 1;
  border-left: solid 1px #d5d7db;
  border-top: solid 1px #d5d7db;
}

.table_calendar th,
.table_calendar td {
  text-align: center;
  width: calc(100% / 7);
  border-right: solid 1px #d5d7db;
  border-bottom: solid 1px #d5d7db;
}
.table_calendar th {
  border-bottom: none;
  padding: 8px 0 0;
}

.table_calendar .date {
  padding: 8px 0;
}

.table_calendar .schedule {
  color: #fff;
  vertical-align: top;
  height: 80px;
}
.table_calendar td span {
  display: block;
  border-radius: 5px;
  padding: 5px 3px;
  font-size: 11px;
  text-align: center;
  margin: 1px;
  line-height: 1.25;
}

.table_calendar .schedule .closed-day {
  color: #991b1b;
  background-color: #fee2e2;
  text-align: center;
  margin: 2px;
}

.u-md-hidden {
  display: block;
}

@media screen and (min-width: 768px) {
  .table_calendar {
    min-width: 950px;
  }
  .table_calendar .schedule {
    height: 150px;
  }
  .table_calendar td span {
    text-align: left;
    margin: 0 2px 2px 0;
  }

  .u-md-hidden {
    display: none;
  }
}

.loading {
  position: relative;
  height: 150px;
}

.loading:before {
  content: "読み込み中";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 40px);
}

.loading:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  width: 50px;
  height: 50px;
  border: 5px solid #000;
  border-right: 5px solid transparent;
  border-radius: 50%;
  animation: loading 2s linear infinite;
}

@keyframes loading {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
    opacity: 0.3;
  }
}
