.wrapper {
  margin: 10px auto;
  max-width: 700px;
}
.container-calendar {
  background: #ffffff;
  padding: 10px;
  width: 100%;
  margin: 0 auto;
  overflow: auto;
}
.button-container-calendar button {
  cursor: pointer;
  display: inline-block;
  zoom: 1;
  background: #00a2b7;
  color: #fff;
  border: 1px solid #0aa2b5;
  border-radius: 4px;
  padding: 5px 10px;
}
.table-calendar {
  border-collapse: collapse;
  width: 100%;
}
.table-calendar th,
.table-calendar td{
  padding: 8px;
  border: 1px solid #e2e2e2;
  text-align: center;
  vertical-align: top;
}
.date-picker.selected {
  font-weight: bold;
  color: #fff;
  background: #cc0000;
}
.date-picker.selected span {
  border-bottom: 2px solid currentColor;
}
/* 日曜 */
.date-picker:nth-child(1):not(.date-holiday) {
color: red;
}
/* 土曜 */
.date-picker:nth-child(7):not(.date-holiday) {
color: blue;
}
#monthAndYear {
  text-align: center;
  margin-top: 0;
}
.button-container-calendar {
  position: relative;
  margin-bottom: 1em;
  overflow: hidden;
  clear: both;
}
#previous {
  float: left;
}
#next {
  float: right;
}
.footer-container-calendar {
  margin-top: 1em;
  border-top: 1px solid #dadada;
  padding: 10px 0;
}
.footer-container-calendar select {
  cursor: pointer;
  display: inline-block;
  zoom: 1;
  background: #ffffff;
  color: #454545;
  border: 1px solid #bfc5c5;
  border-radius: 3px;
  padding: 5px 1em;
}
.date-holiday {
  color: red;
}
.date-description {
  width: 80%;
  position: relative;
  margin: 1em;
  padding: 0.5em;
  background: #cc0000;
  color: white;
  border-radius: 0.5em;
}
.date-description:after {
  width: 80%;
  content: "";
  position: relative;
  display: block;
  left: 0.5em;
  top: -3em;
  border-top:1em solid transparent;
  border-left:1em solid #cc0000;
}
