/*------------------------
カウントダウンタイマー　css
------------------------*/
#page-top img {
  bottom: 249px
}
.cdt_wrapper {
  background: #00C853;
  font-weight: bold;
  text-align: center;
  line-height: 2;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  z-index: 99999;
  bottom: 0;
  width: 100%;
  letter-spacing: 0;
}
.cdt_wrapper small {
  padding: 0 .4em;
  color: #fff;
}
.cdt {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.cdt_txt {
  display: inline-block;
  margin-right: .6em;
  line-height: 1.2;
}
.cdt_txt span {
  color: #fff;
}
.cdt_num {
  background-color: #fff;
  padding: 0 .15em;
}
.cdt_num {
    line-height: 1;
    padding: .3em .15em;
}
.cdt_app{
  background: #fff;
  border-radius: 10px;
  text-decoration: none!important;
  font-weight: 900;
  margin-left: 20px;
  color: #019b41;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .cdt_wrapper{
    padding: 0.4em 1% 0.3em;
    line-height: 1.2;
  }
  .cdt_wrapper p{
    margin-bottom: 0;
  }
  .cdt {
    width: 100%;
    /*display: block;*/
    justify-content: center;
  }
  .cdt_txt{
    font-size: 1.6rem;
    line-height: 1.2;
    /*margin-top: -5px
    margin-bottom: 10px;*/
  }
  .cdt_num{
    font-size: 2.2rem;
    padding: .2em .15em;
  }
  .cdt_date{
    margin-bottom: 8px;
  }
  .cdt_app{
    margin-left: 0;
      padding: 4% 0!important;
      width: 58%!important;
      /*display: block;*/
      font-size: 1.6rem!important;
      height: 33px!important;
      line-height: 4px!important;
      text-align: center;
      margin-left: 8px;
      box-sizing: border-box;
      /*margin-top: 6px;*/
  }
  .cdt_txt span{
    font-size: 1.2rem;
  }
  .cdt_date small{
    font-size: 1.2rem;
  }
  footer{
    margin-bottom: 11%!important;
  }
  .kikan{
    display: block;
  }
}
@media screen and (min-width: 768px) {
  footer {
      margin-bottom: 90px;
  }
  .cdt_wrapper {
      /*line-height: 2.5;*/
      font-size: 1.8rem;
      padding: 16px 0;
  }
  .cdt_wrapper small {
    font-size: 2.6rem;
    padding: 0 .4em;
  }
  .cdt_date {
    font-size: 2.6rem;
  }
  .cdt_date small{
    font-size: 2rem;
  }
  .cdt_txt{
    font-size: .6em;
    margin-right: 25px;
  }
  .cdt_txt span{
    font-size: 2rem;
    line-height: 1.2;
    display: block;
  }
  .cdt_app {
      width: 664px;
      display: block;
      font-size: 3.2rem;
      height: 60px;
      line-height: 60px;
      font-family: Verdana, Geneva, Tahoma, sans-serif
  }
}
@media only screen and (max-width: 768px) and (orientation: portrait) {
  .cdt_app {
      width: 664px;
      display: block;
      font-size: 2.4rem;
      height: 45px;
      line-height: 45px;
      font-family: Verdana, Geneva, Tahoma, sans-serif
  }
  footer{
    margin-bottom: 72px;
  }
}
@media only screen and (max-width: 320px) and (orientation:portrait) {
  footer{
    margin-bottom: 14%!important;
  }
  .cdt_app {
      width: 24%!important;
      font-size: 1.2rem!important;
      height: 33px;
      line-height: 9px!important;
      font-family: Verdana, Geneva, Tahoma, sans-serif   
  }
  .cdt_txt{
    font-size: 1.2rem;
  }
}
/* カウントダウンバーの共通フェード効果 */
.cdt_wrapper {
  transition: opacity 1.0s ease, visibility 1.0s ease;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* フェードアウト用クラス */
.cdt_wrapper.is-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}