@charset "utf-8";

.calendar_ttl_wrap {
  display: flex;
  justify-content: center;
}

.calendar_ttl {
  font-weight: bold;
  font-size: 14px;
  line-height: 1;
}

.calendar_text_wrap {
  padding: 0 0 0 25px;  
}

.holyday_attention {
  color: #8a222e;
  line-height: 1;
  font-size: 12px;
  padding: 1px 0 0 20px;
  position: relative;
}
.holyday_attention::before {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  background: #eddddf;
  top: -1px;
  left: 0;
  border-radius: 100%;
}

@media screen and (max-width:767px) {
  .holyday_attention {
    font-size: 11px;
  }
    
  .holyday_attention::before{
    content: "";
    display: block;
    position: absolute;
    width: 14px;
    height: 14px;
    background: #eddddf;
    top: -2px;
    left: -3px;
    border-radius: 100%;
  }  
}

@media all and (-ms-high-contrast: none) {
  .holyday_attention::before {
    top: -6px;
  }
}

.cal_wrapper_outer {
  padding: 0 0 0 25px;
  font-family: "メイリオ", "Meiryo", "verdana", sans-serif;
}

.cal_wrapper_outer::after {
  content: "";
  display: block;
  clear: both;
}

.cal_wrapper {
  float: left;
  padding: 10px 0px 17px;
  margin-right: 20px;
}

.cal_wrapper:last-of-type {
  margin-right: 0;
}

.schedule_wrapper {
  padding: 10px 0px;
  width: 310px;
  border: solid 1px #CCC;
  border-radius: 5px;
  box-shadow: 1px 1px 3px #666;
  display: none;
}

.schedule_wrapper h3 {
  padding: 0px 10px;
  font-weight: normal;
  margin: 0px;
  font-size: 12px;
  color: #666;
}

.schedule_wrapper .schedule_list {
  padding: 0px 10px;
  margin: 0px;
}

.schedule_wrapper .schedule_list ol {
  padding: 0px;
  margin: 5px auto;
  border-top: solid 1px #CCC;
}

.schedule_wrapper .schedule_list ol li {
  padding: 5px 10px 0px 0px;
  margin: 0px 0px 0px 30px;
  font-size: 12px;
  line-height: 1.5em;
}

.schedule_wrapper .schedule_list ol li:hover {
  text-decoration: underline;
}

.cal_wrapper table.cal tr th p {
  font-family: "メイリオ", "Meiryo", "verdana", sans-serif;
  padding: 5px;
  margin: 0px;
  font-size: 14px;
  line-height: 1;
}

.cal_wrapper table.cal tr th .cal_ui {
  float: right;
  display: none !important;
}

.cal_wrapper table.cal tr th .cal_ui input {
  border: solid 1px #CCC;
  background-color: #FFF;
  font-size: 12px;
  margin: 0px 1px;
  padding: 1px 5px;
  border-radius: 3px;
}

.cal_wrapper table.cal tr td {
  font-size: 11px;
  text-align: center;
  padding: 2px 3px 3px 2px;
  font-weight: 500;
}

.cal_wrapper table.cal tr.headline {}

.cal_wrapper table.cal tr.headline td {
  padding: 5px 0px;
  font-weight: bold;
  font-size: 11px;
}

.cal_wrapper table.cal tr.headline td:first-child,
.cal_wrapper table.cal tr.headline td:last-child {
  color: #8a222e;
}

.cal_wrapper table.cal tr td div {
  position: relative;
  height: 20px;
  width: 20px;
  text-align: center;
  background-color: #FFF;
  border-radius: 3px;
  font-size: 10px;
  font-weight: bold;
  padding-top: 1.5px;
}

@media all and (-ms-high-contrast: none) {
  .cal_wrapper table.cal tr td div {
    padding-top: 2px;
    box-sizing: border-box;
  }
}

.cal_wrapper table.cal tr td div span {
  display: none !important;
  position: absolute;
  top: 20px;
  left: 0px;
  width: 180px;
  border: solid 1px #EEE;
  background-color: #FFF;
  text-align: left;
  padding: 5px;
  z-index: 10;
  font-weight: normal;
  line-height: 1.5em;
  box-shadow: 1px 1px 3px #666;
}

/* 以下、クラス指定するときのアレ */

.cal_wrapper table.cal tr td .Sat {
  color: #8a222e;
  background: #eddddf;
  border-radius: 100%;
}

.cal_wrapper table.cal tr td .Sun {
  color: #8a222e;
  background: #eddddf;
  border-radius: 100%;
}

.cal_wrapper table.cal tr td .Today {
  font-weight: bolder;
  border-radius: 50px;
}

.cal_wrapper table.cal tr td .Deli {}

.cal_wrapper table.cal tr td .Holyday {
  color: #8a222e;
  background: #eddddf;
  border-radius: 100%;
}

.cal_wrapper table.cal tr td .Daily{
    background: #fff !important;
    color: #473933 !important;
}

.cal_wrapper table.cal tr td .Birthday {}

.cal_wrapper table.cal tr td .backward {}

.cal_wrapper table.cal tr td .pointer {}

.cal_wrapper table.cal tr td .pointer:hover {}

@media screen and (max-width: 767px) {
  .cal_wrapper_outer {
    display: flex;
    padding: 0 10px;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
  }
  .cal_wrapper,
  .cal_wrapper:last-of-type {
    margin: 0 5px;
  }
  .cal_wrapper table.cal tr td {
    font-size: 10px;
    padding: 2px 2px 3px 2px;
  }
  .cal_wrapper table.cal tr td div {
    padding-top: 0;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}