@charset "UTF-8";
/* CSS Document */

.container-calendar {
  background-color: #f9f9f9;
  padding: 15px;
  width: 100%;
  margin: 0 auto;
  overflow: auto;
}
#monthAndYear a {
}
#monthAndYear {
  text-align: center;
  margin-top: 0;
  font-size: 18px;
  font-weight: 700;
}
.button-container-calendar {
  position: relative;
  margin-bottom: 1em;
  overflow: hidden;
  clear: both;
}
.button-container-calendar .button {
  cursor: pointer;
  display: inline-block;
  zoom: 1;
}
.button-container-calendar .button a {
  padding: 10px;
}
.button-container-calendar .button a:hover {
  text-decoration:none;
}
#previous {
  float: left;
}
#previous a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0d9";
  padding-right: 5px;
}
#next {
  float: right;
}
#next a:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  padding-left: 5px;
}
.table-calendar {
  border-collapse: collapse;
  width: 100%;
}
.table-calendar td, .table-calendar th {
  border: 1px solid #ddd;
  text-align: center;
  vertical-align: top;
}
.table-calendar th {
  background-color: #eeeeee;
  padding: 10px;
}
.table-calendar th:nth-child(1) {
  background-color: #ffe08c;
}
.table-calendar th:nth-child(7) {
  background-color: #fff3d1;
}
.table-calendar td {
  background-color: #fff;
}
.table-calendar td a {
  color: #0098d9;
  text-decoration: underline;
  padding: 10px;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
.table-calendar td a:hover {
  background-color: #efefef;
}
.ended {
  padding: 10px;
  display: block;
  color: #ccc;
}
.today {
  position: relative;
  padding: 10px;
  display: block;
  color: #ccc;
}
.today a {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ff9324;
  padding: 10px !important;
  color: #fff !important;
}
.today a:hover {/* マウスオーバー時に色変更*/
  opacity: 0.7 !important;
}
