@charset "UTF-8";
/* CSS Document (カレンダーCMS) */
.calendarwrap {
  border-radius: 40px;
  background: #fff;
  padding: 15px 20px 20px;
}
@media (max-width: 550px) {
  .calendarwrap {
    border-radius: 25px;
    padding: 10px;
  }
}
/*年月*/
.calendar_head {
  font-size: clamp(1.2rem, 1.11rem + 0.32vw, 1.35rem);
  text-align: center;
  font-weight: 400;
  margin-bottom: 7px;
}
/*月切り替え*/
.arrow {
  display: flex;
  justify-content: space-between;
}
.arrow a {
  display: inline-block;
  white-space: nowrap;
  color: #4E4B48;
}
.arrow a:hover {
  opacity: 0.6;
}
.arrow a b {
  font-weight: 400;
}
.arrow-after i {
  margin-left: 5px;
}
.arrow-before i {
  margin-right: 5px;
}
/*本体*/
.calendar_body table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.calendar_body table tr {
  border: 1px solid #dedede;
}
.calendar_body table tr th, .calendar_body table tr td {
  padding: 10px;
  font-weight: 400;
  border-radius: 0 !important;
}
.calendar_body table tr th {
  border-right: 1px solid #dedede;
  background: #4E4B48;
  color: #fff;
}
.calendar_body table tr td {
  border-right: 1px solid #dedede;
  border-left: 1px solid #dedede;
  padding-top: 0 !important;
  background: #fff;
}
.calendar_body table tr td.off {
  background-color: #f5f5f5; /*定休日の色*/
  color: #4E4B48;
}
/*※は定休日です。*/
.calendar_bottom {
  text-align: center;
  margin-top: 5px;
  margin-bottom: 0;
}
.calendar_bottom span.colored {
  display: inline-block;
  height: 1em;
  width: 30px;
  background-color: #f5f5f5; /*定休日の色*/
  vertical-align: sub;
  margin: 0 3px;
  border: 1px solid #dedede;
  margin-bottom: 0.1em;
}
@media (max-width: 750px) {
  .arrow a, .calendar_body table tr th {
    font-size: 13px;
  }
  .calendar_body table tr th, .calendar_body table tr td {
    padding: 5px;
  }
  .calendar_bottom {
    font-size: 0.8rem;
  }
  /* タイトル */
  .calendar_body table .item {
    font-size: 0.5rem;
  }
}