@charset "UTF-8";
/* ==============================
  base
============================== */
/******************
  font
*******************/
@import url("https://fonts.googleapis.com/css?family=EB+Garamond:400,400i");
@import url("https://fonts.googleapis.com/css?family=Roboto&display=swap");
@import url("https://fonts.googleapis.com/css?family=EB+Garamond:400,400i");
@import url("https://fonts.googleapis.com/css?family=Roboto&display=swap");
@font-face {
  font-family: 'TrajanProRegular';
  src: url("../font/trajan/trajanp0-webfont.eot");
  src: url("../font/trajan/trajanp0-webfont.eot?#iefix") format("embedded-opentype"), url("../font/trajan/trajanp0-webfont.woff") format("woff"), url("../font/trajan/trajanp0-webfont.ttf") format("truetype"), url("../font/trajan/trajanp0-webfont.svg#TrajanProRegular") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* ==============================
  common Styles
============================== */
.header {
  position: static;
  width: 100%;
  height: 73px;
  /*チェックがついたら表示させる*/
}

.header.fixed_on {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.75);
}

.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (min-width: 600px) {
  .header__inner {
    width: 900px;
    margin: auto;
  }
}

.header__left {
  display: block;
  padding: 20px 0 20px 20px;
  width: 50%;
  font-size: 0;
}

.header__left--logo {
  display: block;
  height: 40px;
  background: url(../img/index/santaltia_logo.svg) no-repeat left center;
  background-size: contain;
}

@media screen and (min-width: 600px) {
  .header__left--logo {
    height: 55px;
  }
}

.header__right {
  width: 50%;
  position: relative;
}

.header__right .header_btn {
  position: relative;
  height: 40px;
  width: 40px;
  margin: 15px 20px 20px auto;
  cursor: pointer;
}

.header__right .header_btn > span, .header__right .header_btn::before, .header__right .header_btn::after {
  display: block;
  position: absolute;
  height: 3px;
  right: 0;
  width: 80%;
  background: #666;
  content: '';
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header__right .header_btn::before {
  top: 7.5px;
}

.header__right .header_btn::after {
  bottom: 7.5px;
}

.header__right .header_btn > span {
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.header__right .header_btn.nav_on span {
  -webkit-transform: translate(3000%, 0);
  transform: translate(3000%, 0);
}

.header__right .header_btn.nav_on::before {
  -webkit-transform: rotate(45deg) translate(9px, 7px);
  transform: rotate(45deg) translate(9px, 7px);
}

.header__right .header_btn.nav_on::after {
  -webkit-transform: rotate(-45deg) translate(9px, -7px);
  transform: rotate(-45deg) translate(9px, -7px);
}

.header__nav {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 100%;
  width: 65%;
  background-color: #cad1ca;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}

@media screen and (min-width: 600px) {
  .header__nav {
    width: 340px;
  }
}

.header__nav .menu_logo {
  margin-top: 20px;
  width: 90%;
}

@media screen and (min-width: 600px) {
  .header__nav .menu_logo {
    margin-top: 80px;
    width: 65%;
  }
}

.header__nav .header_menu {
  margin-top: 20px;
}

@media screen and (min-width: 600px) {
  .header__nav .header_menu {
    margin-top: 60px;
  }
}

.header__nav .header_menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  overflow: hidden;
}

.header__nav .header_menu__list a {
  display: block;
  padding: 7px 0 7px 50px;
  color: #fff;
  font-size: 14px;
  text-align: left;
  letter-spacing: 2px;
  line-height: 1.2;
}

@media screen and (min-width: 600px) {
  .header__nav .header_menu__list a {
    padding: 0 0 14px;
    text-align: center;
  }
}

.header__nav .header_menu__list a .text {
  font-size: 10px;
}

.header__nav .header_menu__list--item {
  position: relative;
  width: 100%;
}

@media screen and (min-width: 600px) {
  .header__nav .header_menu__list--item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 50%;
    padding: 10px 10px 10px 20px;
  }
}

.header__nav .header_menu__list--item::before {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 30px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 20px;
  z-index: -1;
  content: "";
}

@media screen and (min-width: 600px) {
  .header__nav .header_menu__list--item::before {
    position: static;
    width: 30px;
    height: 20px;
    background-position: left center;
    background-size: auto 18px;
  }
}

.header__nav .header_menu__list .item1::before {
  background-image: url("../img/index/icon_top.png");
}

.header__nav .header_menu__list .item2::before {
  background-image: url("../img/index/icon_cuisine.png");
}

.header__nav .header_menu__list .item3::before {
  background-image: url("../img/index/icon_bestrate.png");
}

.header__nav .header_menu__list .item4::before {
  background-image: url("../img/index/icon_concept.png");
  background-size: auto 16px;
}

.header__nav .header_menu__list .item5::before {
  background-image: url("../img/index/icon_fair.png");
  background-size: auto 26px;
}

.header__nav .header_menu__list .item6::before {
  background-image: url("../img/index/icon_plan.png");
  background-size: auto 24px;
}

.header__nav .header_menu__list .item12::before {
  background-image: url("../img/index/icon_report.png");
  background-size: auto 24px;
}

.header__nav .header_menu__list .item7::before {
  background-image: url("../img/index/icon_store.png");
}

.header__nav .header_menu__list .item8::before {
  background-image: url("../img/index/icon_recruit.png");
}

.header__nav .header_menu__list .item9::before {
  background-image: url("../img/index/icon_document.png");
}

.header__nav .header_menu__list .item10::before {
  background-image: url("../img/index/icon_document.png");
}

@media screen and (min-width: 600px) {
  .header__nav .header_menu__list .item11 {
    width: 60%;
  }
}

.header__nav .header_menu__list .item11::before {
  background-image: url("../img/index/icon_rest.png");
  background-size: auto 18px;
}

@media screen and (min-width: 600px) {
  .header__nav .header_menu__list .item11::before {
    background-size: auto 16px;
  }
}

.header__nav .sns {
  display: inline-block;
  margin-top: 20px;
  padding-bottom: 50px;
}

@media screen and (min-width: 600px) {
  .header__nav .sns {
    padding-bottom: 0px;
    margin-top: 0;
  }
}

.header__nav .sns .icon_line {
  width: 25%;
  margin-right: 30px;
}

.header__nav .sns .icon_insta {
  width: 25%;
}

.header__nav.nav_on {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  -webkit-box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
}

.header__nav-bg {
  display: block;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  content: "";
  cursor: pointer;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}

.header__nav-bg.nav_on {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 0.7;
  z-index: 10;
}

.header .header_right {
  width: 50%;
  position: relative;
}

.header .header_right .h_nav-open {
  display: block;
  margin: auto;
  width: 30px;
  height: 21px;
  vertical-align: middle;
  cursor: pointer;
}

@media screen and (min-width: 600px) {
  .header .header_right .h_nav-open {
    margin: 0 0 0 auto;
  }
}

.header .header_right .h_nav-open > span, .header .header_right .h_nav-open::before, .header .header_right .h_nav-open::after {
  position: absolute;
  height: 3px;
  /*線の太さ*/
  width: 23px;
  /*長さ*/
  border-radius: 3px;
  background: #666;
  display: block;
  content: '';
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header .header_right .h_nav-open::before {
  bottom: 18px;
}

.header .header_right .h_nav-open > span {
  bottom: 9px;
}

.header .header_right .h_nav-open::after {
  bottom: 0px;
}

.header .header_right .h_nav-open.nav_on span {
  -webkit-transform: translate(3000%, 0);
  transform: translate(3000%, 0);
}

.header .header_right .h_nav-open.nav_on::before {
  -webkit-transform: rotate(45deg) translate(9px, 4px);
  transform: rotate(45deg) translate(9px, 4px);
}

.header .header_right .h_nav-open.nav_on::after {
  -webkit-transform: rotate(-45deg) translate(9px, -4px);
  transform: rotate(-45deg) translate(9px, -4px);
}

.header .header_right .h_nav-drawer {
  position: relative;
  margin: 20px 0 0 100px;
}

@media screen and (min-width: 600px) {
  .header .header_right .h_nav-drawer {
    margin-top: 30px;
  }
}

.header .header_right .h_nav-drawer .h_nav-bg {
  display: block;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  content: "";
  cursor: pointer;
}

.header .header_right .h_nav-drawer .h_nav-bg.nav_on {
  opacity: 0.7;
  z-index: 10;
}

.header .header_right .h_nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 100%;
  width: 65%;
  background-color: #cad1ca;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}

@media screen and (min-width: 600px) {
  .header .header_right .h_nav-content {
    width: 340px;
  }
}

.header .header_right .h_nav-content .menu_logo {
  margin-top: 20px;
  width: 90%;
}

@media screen and (min-width: 600px) {
  .header .header_right .h_nav-content .menu_logo {
    margin-top: 80px;
    width: 65%;
  }
}

.header .header_right .h_nav-content .header_menu {
  margin-top: 20px;
}

@media screen and (min-width: 600px) {
  .header .header_right .h_nav-content .header_menu {
    margin-top: 60px;
  }
}

.header .header_right .h_nav-content .header_menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  overflow: hidden;
}

.header .header_right .h_nav-content .header_menu__list a {
  display: block;
  padding: 7px 0 7px 50px;
  color: #fff;
  font-size: 14px;
  text-align: left;
  letter-spacing: 2px;
  line-height: 1.2;
}

@media screen and (min-width: 600px) {
  .header .header_right .h_nav-content .header_menu__list a {
    padding: 0 0 14px;
    text-align: center;
  }
}

.header .header_right .h_nav-content .header_menu__list a .text {
  font-size: 10px;
}

.header .header_right .h_nav-content .header_menu__list--item {
  position: relative;
  width: 100%;
}

@media screen and (min-width: 600px) {
  .header .header_right .h_nav-content .header_menu__list--item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 50%;
    padding: 10px 10px 10px 20px;
  }
}

.header .header_right .h_nav-content .header_menu__list--item::before {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 30px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 20px;
  z-index: -1;
  content: "";
}

@media screen and (min-width: 600px) {
  .header .header_right .h_nav-content .header_menu__list--item::before {
    position: static;
    width: 30px;
    height: 20px;
    background-position: left center;
    background-size: auto 18px;
  }
}

.header .header_right .h_nav-content .header_menu__list .item1::before {
  background-image: url("../img/index/icon_top.png");
}

.header .header_right .h_nav-content .header_menu__list .item2::before {
  background-image: url("../img/index/icon_cuisine.png");
}

.header .header_right .h_nav-content .header_menu__list .item3::before {
  background-image: url("../img/index/icon_bestrate.png");
}

.header .header_right .h_nav-content .header_menu__list .item4::before {
  background-image: url("../img/index/icon_concept.png");
  background-size: auto 16px;
}

.header .header_right .h_nav-content .header_menu__list .item5::before {
  background-image: url("../img/index/icon_fair.png");
  background-size: auto 26px;
}

.header .header_right .h_nav-content .header_menu__list .item6::before {
  background-image: url("../img/index/icon_plan.png");
  background-size: auto 24px;
}

.header .header_right .h_nav-content .header_menu__list .item7::before {
  background-image: url("../img/index/icon_store.png");
}

.header .header_right .h_nav-content .header_menu__list .item8::before {
  background-image: url("../img/index/icon_recruit.png");
}

.header .header_right .h_nav-content .header_menu__list .item9::before {
  background-image: url("../img/index/icon_document.png");
}

.header .header_right .h_nav-content .header_menu__list .item10::before {
  background-image: url("../img/index/icon_document.png");
}

@media screen and (min-width: 600px) {
  .header .header_right .h_nav-content .header_menu__list .item11 {
    width: 60%;
  }
}

.header .header_right .h_nav-content .header_menu__list .item11::before {
  background-image: url("../img/index/icon_rest.png");
  background-size: auto 18px;
}

@media screen and (min-width: 600px) {
  .header .header_right .h_nav-content .header_menu__list .item11::before {
    background-size: auto 16px;
  }
}

.header .header_right .h_nav-content .sns {
  display: inline-block;
  margin-top: 20px;
  padding-bottom: 50px;
}

@media screen and (min-width: 600px) {
  .header .header_right .h_nav-content .sns {
    padding-bottom: 0px;
    margin-top: 0;
  }
}

.header .header_right .h_nav-content .sns .icon_line {
  width: 25%;
  margin-right: 30px;
}

.header .header_right .h_nav-content .sns .icon_insta {
  width: 25%;
}

.header .h_nav-drawer.nav_on .h_nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  -webkit-box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
}

.header .h_nav-drawer.nav_on::before {
  opacity: 0.5;
  z-index: 10;
}

.header .header-logo-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-flex-direction: row;
  -o-flex-direction: row;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
}

.footer_nav_top {
  display: block;
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 70px;
  height: 70px;
  z-index: 10;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transform: translate(200%, 0);
  transform: translate(200%, 0);
}

.footer_nav_top.fixed_on {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.footer_nav_top span {
  display: block;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 43%;
  color: #fff;
  z-index: 1;
}

.footer_nav_top::before {
  content: "";
  display: block;
  position: absolute;
  top: 45px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #a2c2e1;
  border-right: 2px solid #a2c2e1;
  -webkit-transform: translateX(-50%) rotate(-45deg);
  transform: translateX(-50%) rotate(-45deg);
  z-index: 1;
}

.footer_nav_top::after {
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(102, 102, 102, 0.6);
}

@media screen and (min-width: 600px) {
  .footer {
    max-width: 900px;
    margin: auto;
  }
}

.footer .footer_logo {
  width: 50%;
  margin-top: 20px;
}

@media screen and (min-width: 600px) {
  .footer .footer_logo {
    width: 30%;
  }
}

.footer .text {
  font-size: 18px;
  letter-spacing: 3px;
  line-height: 2.2;
  margin-top: 30px;
}

.footer .text .small {
  font-size: 14px;
}

.footer .sns {
  display: inline-block;
  margin-top: 20px;
}

.footer .sns .icon_line {
  width: 30%;
  margin-right: 30px;
}

.footer .sns .icon_insta {
  width: 30%;
}

.footer .footer_menu {
  background-color: #fff;
  margin-top: 20px;
}

.footer .footer_menu .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  overflow: hidden;
}

.footer .footer_menu .list a {
  color: #666;
  font-size: 14px;
}

.footer .footer_menu .list .item {
  width: 50%;
  text-align: center;
  border: 1px solid #666;
  -webkit-transition: .4s;
  transition: .4s;
  padding: 10px;
}

.footer .copyright {
  background-color: #f1eeee;
  padding: 20px;
}

.footer .copyright p {
  font-size: 12px;
}

/* ==============================
  base
============================== */
/******************
  font
*******************/
@font-face {
  font-family: 'TrajanProRegular';
  src: url("../font/trajan/trajanp0-webfont.eot");
  src: url("../font/trajan/trajanp0-webfont.eot?#iefix") format("embedded-opentype"), url("../font/trajan/trajanp0-webfont.woff") format("woff"), url("../font/trajan/trajanp0-webfont.ttf") format("truetype"), url("../font/trajan/trajanp0-webfont.svg#TrajanProRegular") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* ==============================
  main
  ---------------------------
  main_content

============================== */
.fair_calendar--calendar {
  position: relative;
  margin: 5%;
  border: 1px solid #808080;
  background: #fff;
  padding: 5%;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media screen and (min-width: 600px) {
  .fair_calendar--calendar {
    margin: 5% 10%;
  }
}

.fair_calendar--caption {
  padding: 10px 0 5px;
  letter-spacing: 1px;
  font-family: "TrajanProRegular", serif;
}

@media screen and (min-width: 600px) {
  .fair_calendar--caption {
    font-size: 20px;
  }
}

.fair_calendar--caption .caption__month {
  font-size: 20px;
}

@media screen and (min-width: 600px) {
  .fair_calendar--caption .caption__month {
    font-size: 30px;
  }
}

#eo_shortcode_calendar_0_content {
  position: static;
}

.eo-widget-cal-wrap table {
  width: 100%;
  text-align: center;
}

.eo-widget-cal-wrap caption {
  display: none;
}

.eo-widget-cal-wrap thead tr {
  position: relative;
}

.eo-widget-cal-wrap thead tr th {
  font-weight: normal;
  font-size: 0;
  width: 14.28571%;
  width: calc(100%/7);
}

.eo-widget-cal-wrap thead tr th::before {
  font-size: 1.2rem;
}

@media screen and (min-width: 600px) {
  .eo-widget-cal-wrap thead tr th::before {
    font-size: 16px;
  }
}

.eo-widget-cal-wrap thead tr th:nth-child(1)::before {
  content: "MON";
}

.eo-widget-cal-wrap thead tr th:nth-child(2)::before {
  content: "TUE";
}

.eo-widget-cal-wrap thead tr th:nth-child(3)::before {
  content: "WED";
}

.eo-widget-cal-wrap thead tr th:nth-child(4)::before {
  content: "THU";
}

.eo-widget-cal-wrap thead tr th:nth-child(5)::before {
  content: "FRI";
}

.eo-widget-cal-wrap thead tr th:nth-child(6)::before {
  content: "SAT";
  color: #6699cc;
}

.eo-widget-cal-wrap thead tr th:nth-child(7)::before {
  content: "SUN";
  color: #ff6666;
}

.eo-widget-cal-wrap tfoot {
  position: absolute;
  top: 15px;
  left: 5%;
  width: 90%;
  z-index: 10;
  letter-spacing: 1px;
  font-family: "TrajanProRegular", serif;
}

.eo-widget-cal-wrap tfoot tr {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 0;
}

.eo-widget-cal-wrap tfoot tr a > p {
  font-size: 14px;
}

@media screen and (min-width: 600px) {
  .eo-widget-cal-wrap tfoot tr a > p {
    font-size: 20px;
  }
}

.eo-widget-cal-wrap tfoot tr > td:nth-child(2) {
  display: none;
  width: 0;
}

.eo-widget-cal-wrap tfoot tr #eo-widget-next-month,
.eo-widget-cal-wrap tfoot tr #eo-widget-prev-month {
  display: block;
  width: 50%;
  width: calc(100%/2);
  position: relative;
}

.eo-widget-cal-wrap tfoot tr #eo-widget-next-month {
  text-align: right;
}

.eo-widget-cal-wrap tfoot tr #eo-widget-prev-month {
  text-align: left;
}

.eo-widget-cal-wrap tbody {
  /* a */
}

.eo-widget-cal-wrap tbody td {
  position: relative;
  width: 14.28571%;
  width: calc(100%/7);
  padding: 0.05% 0;
  padding: calc(100%/20) 0;
  font-size: 1.6rem;
}

@media screen and (min-width: 600px) {
  .eo-widget-cal-wrap tbody td {
    font-size: 1.8rem;
    padding: 3% 0;
  }
}

.eo-widget-cal-wrap tbody td:after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  content: '';
  padding-top: 70%;
  width: 70%;
  border-radius: 50%;
  -webkit-transition: 1s;
  transition: 1s;
}

@media screen and (min-width: 600px) {
  .eo-widget-cal-wrap tbody td:after {
    padding-top: 45%;
    width: 45%;
  }
}

.eo-widget-cal-wrap tbody td.event:after {
  background: #f2ebe3;
}

.eo-widget-cal-wrap tbody td.event a {
  position: relative;
  display: inline;
  z-index: 10;
}

.eo-widget-cal-wrap tbody td.event:hover:after {
  background: #bdb3a7;
}

.eo-widget-cal-wrap tbody td.event:hover a {
  color: #fff;
}

.eo-widget-cal-wrap tbody td.eo-past-date:after {
  display: none;
}

.eo-widget-cal-wrap tbody td.eo-past-date a {
  color: #999;
  pointer-events: none !important;
}

.eo-widget-cal-wrap tbody td.eo-past-date:hover a {
  color: #555;
}

.eo-widget-cal-wrap tbody td:nth-child(6) {
  color: #6699cc;
}

.eo-widget-cal-wrap tbody td:nth-child(6) a {
  color: #6699cc;
}

.eo-widget-cal-wrap tbody td:nth-child(6):hover a {
  color: #6699cc;
}

.eo-widget-cal-wrap tbody td.eo-holiday,
.eo-widget-cal-wrap tbody td:nth-child(7) {
  color: #ff6666;
}

.eo-widget-cal-wrap tbody td.eo-holiday a,
.eo-widget-cal-wrap tbody td:nth-child(7) a {
  color: #ff6666;
}

.eo-widget-cal-wrap tbody td.eo-holiday:hover a,
.eo-widget-cal-wrap tbody td:nth-child(7):hover a {
  color: #ff6666;
}
