@charset "Shift_JIS";
/*--フローティングバナー--*/
.f_banner {
  position: fixed;
  margin: 100px 20px;
  z-index: 60;
  bottom: 0;
  right: 0;
}
.f_banner a {
  text-decoration: none;
}

.f_banner_back {
  width: 300px;
  background-color: #fff;
  border-radius: 25px;
}

.f_banner_body {
  width: 300px;
  background: #f8f8f8;
  color: #000000;
  font-weight: bold;
  text-align: center;
  -webkit-box-shadow: 0 0 7px rgb(0 0 0 / 40%);
  box-shadow: 0 0 7px rgb(0 0 0 / 40%);
}
.f_banner_body:hover {
  transition: opacity 0.3s ease;
  opacity: 0.7;
}

.f_banner_close {
  font-weight: bold;
  position: absolute;
  top: -2px;
  right: -4px;
  z-index: 99999;
  padding: 6px 10px;
  border: none;
  background-color: #f8f8f8;
  border-radius: 25px;
  cursor: pointer;
  -webkit-box-shadow: 0 0 7px rgb(0 0 0 / 40%);
  box-shadow: 0 0 7px rgb(0 0 0 / 40%);
}

@media screen and (max-width: 750px) {
  .f_banner {
    width: 100%;
    margin: 0px;
  }
  .f_banner_back {
    width: 100%;
    margin: 0px;
    border-radius: 0px;
  }
  .banner-bottom {
    padding: 10px 10px 18px 10px;
  }
  .f_banner_close {
    top: 8px;
    right: 15px;
  }
}