@charset "utf-8";
.ft-cal {
  display: flex;
  justify-content: space-between;
  padding: 0 3vw;
}
div.cal_wrapper {
  padding: 4vw 0 1vw;
  width: 50%;
  background: #F9F6F1;
}
table.cal {
  width: 100%;
  padding: 0 2vw;
}
div#cal0 {
  margin-right: 2vw;
}
div.cal_wrapper table.cal tr th p {
  float: left;
  padding: 5px;
  margin: 0px;
  color: #000;
  font-size: 12px;
  font-weight: bold;
}
div.cal_wrapper table.cal tr th div.cal_ui {
  display: none;
}
div.cal_wrapper table.cal tr th div.cal_ui input {
  border: solid 1px #CCC;
  background-color: #FFF;
  font-size: 12px;
  margin: 0px 1px;
  padding: 1px 5px;
  border-radius: 3px;
}
div.cal_wrapper table.cal tr td {
  font-size: 10px;
  text-align: center;
  padding: 2px
}
div.cal_wrapper table.cal tr.headline td {
  padding: 5px 0px;
  color: #666;
}
div.cal_wrapper table.cal tr td div {
  position: relative;
  font-size: 12px;
  text-align: center;
  border-radius: 3px;
  padding: 1vw 0;
}
div.cal_wrapper table.cal tr td div span {
  display: none;
  position: absolute;
  top: 30px;
  left: 0px;
  width: 180px;
  border: solid 1px #EEE;
  background-color: #FFF;
  text-align: left;
  padding: 5px;
  z-index: 10;
  color: #000;
  font-weight: normal;
  line-height: 1.5em;
  box-shadow: 1px 1px 3px #666;
}
.ft-cal-txt ul {
  margin: 3vw;
  padding: 0;
  list-style: none;
  font-size: 12px;
}
.ft-cal-txt ul li:first-child:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #CE0E0E;
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 1vw 0 0;
}
.ft-cal-txt ul li:nth-child(2):before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #068827;
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 1vw 0 0;
}
.ft-cal-txt ul li:last-child:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #F57A0C;
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 1vw 0 0;
}
h2.title.ftcal:before {
  content: "営業日カレンダー";
  display: block;
  color: #000;
  font-weight: 500;
  font-size: 10px;
  line-height: 2;
}
/* 以下、クラス指定するときのアレ */
div.cal_wrapper table.cal tr td div.Sat {
  color: #00F;
}
div.cal_wrapper table.cal tr td div.Sun {
  color: #F00;
}
div.cal_wrapper table.cal tr td div.Today {
  font-weight: bolder;
}
div.cal_wrapper table.cal tr td div.Deli {
  background-color: #ffff9d;
}
div.cal_wrapper table.cal tr td div.Holyday {
  font-weight: bold;
  color: #ce0e0e;
}
div.cal_wrapper table.cal tr td div.Holyday.pointer:hover {
  background-color: #ce0e0e;
  color: #fff;
}
div.cal_wrapper table.cal tr td div.WebHolyday {
  font-weight: bold;
  color: #068827;
  border-radius: 3px;
}
div.cal_wrapper table.cal tr td div.WebHolyday.pointer:hover {
  background-color: #068827;
  color: #fff;
}
div.cal_wrapper table.cal tr td div.Holyday02 {
  font-weight: bold;
  color: #f57a0c;
  border-radius: 3px;
}
div.cal_wrapper table.cal tr td div.Holyday02.pointer:hover {
  background-color: #f57a0c;
  color: #fff;
}
div.cal_wrapper table.cal tr td div.backward {
  color: #CCC;
  background: none;
  font-weight: normal;
  border-radius: 3px;
}
div.cal_wrapper table.cal tr td div.pointer {
  cursor: pointer;
}
div.cal_wrapper table.cal tr td div.pointer:hover {
  background-color: #EEE;
}