
/*
= = = = = = = = = = = = = = = = = = = = = = = = = = */

.list-ut-icon > li.icon-calendar:before,
.list-ut-icon.icon-calendar > li:before,
a.button-ut.type-icon.icon-calendar .c-text:before,
a.button-ut.type-icon.icon-calendar:before,
.link-ut-icon.icon-calendar:before,
.heading-ut-icon.icon-calendar:before,
.icon-ut.icon-calendar:before {
  background-image: url(/assets/img-leaf/icon/plan-calendar.svg);
}

.icon-ut.icon-calendar {
  background-image: none;
}

/*
= = = = = = = = = = = = = = = = = = = = = = = = = = */

.nav-ut-bottom-01 {
  position: fixed;
  /* keep at bottom and slide via transform for smooth GPU-accelerated animation */
  bottom: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  
  border-top: 1px solid rgba(190, 184, 184, 0.40);
  background: #ECFBFF;
  box-shadow: 0 -4px 4px 0 rgba(190, 184, 184, 0.25);

  font-size: 14px;
  /* prefer transform for smoother animations */
  transition: bottom 1000ms cubic-bezier(0.55, 0.085, 0, 0.99);
  z-index: 9999;
}

/* visible state: slide up to bottom */
.nav-ut-bottom-01.show {
  bottom: 0;
}

/* hidden state: slide down off-screen */
.nav-ut-bottom-01.hide {
  bottom: -60px;
}

.nav-ut-bottom-01 .p-detail {
  display: flex;
  width: 1100px;
  height: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 1140px) {
  .nav-ut-bottom-01 .p-detail {
    width: 100%;
    padding: 0 20px;
  }
}

/* p-cta */

.nav-ut-bottom-01 .p-cta {
  position: relative;
}
.nav-ut-bottom-01 .c-cta {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 150px;
  height: 44px;
  padding: 10px 0;
  border-radius: 40px;
  background-color: #E573AA;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
.nav-ut-bottom-01 .p-detail .c-cta:hover {
  text-decoration: none;
  background-color: #ec96bf;
}
@media only screen and (max-width: 640px) {
  .nav-ut-bottom-01 .p-detail .c-cta {
    width: 110px;
    height: 37px;
    padding: 7px 0;
  }
}
@media only screen and (max-width: 380px) {
  .nav-ut-bottom-01 .p-detail .c-cta {
    width: 100px;
    height: 34px;
    font-size: 14px;
  }
}
