@charset "UTF-8";

.notifications {
  background: #fff;
  padding: 10px 18px 10px 12px;
  border-left: 6px solid #04a0e9;
  margin-bottom: 20px;
}

.notifications .notifications-content {
  display: flex;
  align-items: center;
}

.notifications-content .check {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  background-color: #4070f4;
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
}

.notifications-content .message {
  display: flex;
  flex-direction: column;
  margin: 0 20px;
}

.notifications .message .text {
  line-height: 1.75;
}

.calendar-table-wrap:not(:last-child) {
  margin-bottom: 50px;
}

/* 未入力データのスタイル */
.calendar-table .no-data {
  background-color: #cfcfcf;
}

/* スマホ対応のスタイル */
@media screen and (max-width: 768px) {
  .calendar-table-wrap:not(:last-child) {
    margin-bottom: 30px;
  }
}

.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;
  }
}
