@charset "UTF-8";

/*---------------------------
フローティングメニュー
---------------------------*/
.floating__menu {
  display: none;
  opacity: 0;
  position: fixed;
}
@media screen and (max-width: 767px) {
  .floating__menu {
    display: none;
    opacity: 0;
    position: fixed;
    bottom: -100px;
    width: 100%;
    background-color: #ffffff;
    transition: bottom 0.5s, opacity 0.5s;
    z-index: 9999;
  }
}
