@charset "UTF-8";
#calendar-header {
  text-align: center;
  font-size: 18px;
  width: 100%;
  margin: 1rem 0 0;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}

#calendar {
  text-align: center;
  width: 100%;
}

#calendar table {
  margin: 10px auto 0;
  border-collapse: collapse;
  width: 236px;
  border: 0;
}

#calendar th {
  color: #000;
}

#calendar th, #calendar td {
  padding-top: 6px;
  padding-bottom: 5px;
  border: 0;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

#calendar td:first-child {
  color: red;
}

#calendar td:last-child {
  color: #69c;
}

#calendar td.disabled {
  color: #ccc;
}

#calendar td.today {
  background: #e40;
  border-radius: 40px;
  color: #fff;
}

/*ボタン*/
#next-prev-button {
  position: relative;
}

#next-prev-button button {
  cursor: pointer;
  border-radius: 4px;
  font-size: 1rem;
  padding: 10px;
  margin: -2.2rem 0;
  color: #000;
  background: #fff;
  border: none;
}

#next-prev-button button:hover {
  background: none;
}

#prev {
  float: left;
}

#next {
  float: right;
}

/*# sourceMappingURL=calendar.map */