#scals {
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
#scals * {
  box-sizing: border-box;
}
@media print, screen and (min-width:641px) {
  #scalendar {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .cal {
    width: 48.5%;
    float: left;
    padding-top: 40px;
  }
  .cal:first-child {
    margin-right: 1.5%;
  }
  .cal:last-child {
    margin-left: 1.5%;
  }
}
@media screen and (max-width:640px) {
  #scalendar {
    padding: 2.5rem 1.5rem;
  }
  .cal {
    width: 100%;
    float: none;
    padding-top: 2rem;
  }
}

/*----------------------------------------------------------------------------------------------------

  カレンダー
  
----------------------------------------------------------------------------------------------------*/
.cal * {
  overflow: visible;
}
/* 月 */
.cal-month {
  text-align: center;
  color: #1e968c;
  line-height: 1.5;
  font-weight: 500;
}
.cal-month__m {
  font-size: 175%;
  font-weight: 600;
  display: inline-block;
  margin-left: 0.25em;
  margin-right: 0.25em;
}
.cal-tbl {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}
.cal-tbl td {
  vertical-align: top;
  line-height: 1.4;
}
.cal-tbl thead td {
  width: 14%;
  text-align: center;
  font-size: 87.5%;
  font-weight: 400;
  padding: 0.75rem 0.5rem;
  background-color: #ceece9;
}
.cal-tbl tbody tr {
  background-color: #fff;
  border-bottom: 1px solid #d2eae8;
}
.cal-tbl tbody tr:last-child {
  border-bottom: 0;
}
.cal-tbl tbody td {
  font-size: 81.3%;
  padding-bottom: 1rem;
  vertical-align: top;
  text-align: left;
  line-height: 1.4;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}
.calTbl tbody td:last-child {
  padding-right: 0.75rem;
}
/* 日付 */
.cal-tbl .day {
  display: block;
  padding: 0.5rem 0.5rem 0.25rem 0.5rem;
  border-left: 1px solid #d2eae8;
  font-weight: 400;
}
.cal-tbl tbody td:first-child .day {
  border-left: 0;
}
/* 祝日 */
.cal-tbl .holiday {
  display: block;
  padding: 0 0.5rem;
  font-size: 70%;
  line-height: 1.2;
  align-self: center;
}
/* スケジュール */
.cal-tbl .sched {
  display: block;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  margin-top: 0.25rem;
  padding: 0.1rem 0;
}
/* 変更 */
.cal-tbl .sched--bikou {
  border-radius: 2px;
  background-color: #61c5b4;
  text-align: center;
  color: #fff;
}
@media print, screen and (min-width:641px) {
  .cal-month {
    font-size: 156.2%;
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width:640px) {
  .cal-month {
    font-size: 112.5%;
    margin-bottom: 1rem;
  }
  .cal-month__m {
    font-size: 225%;
  }
}

/*----------------------------------------------------------------------------------------------------

  スケジュール色説明
  
----------------------------------------------------------------------------------------------------*/
.cal-sched {
  text-align: left;
  padding-top: 1em;
  line-height: 1.4;
  font-size: var(--fs-s);
}
.cal-sched dt, .cal-sched dd {
  padding-top: 0.25em;
}
.cal-sched dt {
  width: 1.5em;
  float: left;
  clear: both;
  margin-right: -1.5em;
}
.cal-sched dt .sched-color {
  width: 0.8em;
  height: 0.8em;
  display: inline-block;
  border: 1px solid var(--cal-sched-border);
  box-sizing: content-box;
  vertical-align: middle;
  margin-top: -0.25em;
}
.cal-sched dd {
  padding-left: 1.5em;
}
.ua-pc .cal-sched dd .henko:before {
  content: "マウスオーバー";
}
.ua-tab .cal-sched dd .henko:before, .ua-sp .cal-sched dd .henko:before {
  content: "タップ";
}

/*----------------------------------------------------------------------------------------------------

  備考一覧
  
----------------------------------------------------------------------------------------------------*/
.cal-bikouList {
  text-align: left;
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
  line-height: 1.4;
}
.cal-bikouList:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}
.cal-bikouList dt {
  width: 5.5em;
  display: inline-block;
  float: left;
  clear: both;
  margin-right: -6em;
  padding-top: 0.5rem;
  text-align: right;
}
.cal-bikouList dd {
  display: block;
  padding-left: 6em;
  padding-top: 0.5rem;
}

/*----------------------------------------------------------------------------------------------------

  備考ダイアログ
  
----------------------------------------------------------------------------------------------------*/
.cal-tbl td {
  position: relative;
}
.cal-tbl .js__cal-dlog {
  cursor: pointer;
}
.dlog-wrap {
  font-size: 112.5%;
  cursor: default;
  display: none;
  width: 300%;
  z-index: 90;
  position: absolute;
  left: 50%;
  bottom: 100%;
  margin-bottom: -1px;
  transform: translateX(-50%);
  box-sizing: border-box;
  border: 1px solid #43636b;
  background-color: #fff;
  border-radius: 3px;
  text-align: left;
}
.dlog-wrap[data-posi="L"] {
  left: 0;
  transform: translateX(0);
}
.dlog-wrap[data-posi="R"] {
  left: inherit;
  right: 1em;
  transform: translateX(0);
}
.dlog-wrap[data-posi="L2"] {
  left: 75%;
}
.dlog-wrap[data-posi="R2"] {
  left: inherit;
  right: -225%;
}
.dlog {
  position: relative;
  box-sizing: border-box;
  padding: 1em;
}
.dlog:before,
.dlog:after {
  content: "";
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: transparent;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
}
.dlog-wrap[data-posi="L"] .dlog:before, .dlog-wrap[data-posi="L"] .dlog:after {
  left: 16.5%;
}
.dlog-wrap[data-posi="L2"] .dlog:before, .dlog-wrap[data-posi="L2"] .dlog:after {
  left: 42%;
}
.dlog-wrap[data-posi="R"] .dlog:before, .dlog-wrap[data-posi="R"] .dlog:after {
  left: inherit;
  right: 3%;
}
.dlog-wrap[data-posi="R2"] .dlog:before, .dlog-wrap[data-posi="R2"] .dlog:after {
  left: inherit;
  right: 34.5%;
}
.dlog:before {
  border-top-color: #43636b;
}
.dlog:after {
  border-top-color: #fff;
  margin: -webkit-calc(-1.5 * 1px) 0 0 0;
  margin: calc(-1.5 * 1px) 0 0 0;
}
.dlog_hd {
  padding-bottom: 0.5em;
  position: relative;
}
.dlog_hd b {
  font-weight: 400;
}
.dlog_hd .week, .dlog_ct {
}
.ua-pc .dlog_hd .closeBtn {
  display: none;
}
.dlog_hd .closeBtn-wrap {
  display: inline-block;
  position: absolute;
  width: 1.8em;
  height: 1.8em;
  right: -0.4em;
  top: -0.4em;
  cursor: pointer;
}
.dlog_hd .closeBtn {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}
.dlog_hd .closeBtn:before,
.dlog_hd .closeBtn:after {
  content: "";
  display: inline-block;
  width: 50%;
  height: 2px;
  background: #144a52;
  position: absolute;
  left: 25%;
  top: 50%;
  margin-left: 1px;
  margin-bottom: 1px;
}
.dlog_hd .closeBtn:before {
  transform: rotate(-45deg);
}
.dlog_hd .closeBtn:after {
  transform: rotate(45deg);
}
@media screen and (max-width:640px) {
  .dlog-wrap {
    width: 400%;
  }
  .dlog-wrap[data-posi="L2"] {
    left: 100%;
  }
  .dlog-wrap[data-posi="R2"] {
    right: -275%;
  }
  .dlog-wrap[data-posi="L2"] .dlog:before,
  .dlog-wrap[data-posi="L2"] .dlog:after {
    left: 37.5%;
  }
  .dlog-wrap[data-posi="R"] .dlog:before,
  .dlog-wrap[data-posi="R"] .dlog:after {
    right: 1%;
  }
  .dlog-wrap[data-posi="R2"] .dlog:before,
  .dlog-wrap[data-posi="R2"] .dlog:after {
    right: 25%;
  }
}
