@charset "UTF-8";
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
/* CSS Document */
/****** フローティングバナー **********/
@media screen and (max-width: 768px) {
  .floatingWrap {
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 100;
  }
  .floating {
    -webkit-backface-visibility: hidden;
    -webkit-transition: All 0.3s ease;
    backface-visibility: hidden;
    background-color: #c9b46f;
    color: #fff;
    cursor: pointer;
    display: block;
    height: auto;
    line-height: ;
    position: relative;
    text-align: center;
    text-align: center;
    transition: All 0.3s ease;
    width: 100%;
  }
  .floatingWrap .floating a {
    color: white;
    font-size: 18px;
  }
  .floating a:hover {
    color: #5c594c;
  }
}
/* CSS Document */