@charset "UTF-8";

#sp-floating-action-btn {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  box-sizing: border-box;
  display: none;
  height: 80px;
  padding: 5px 0;
  padding: 5px;
  margin: 0 auto;
  font-family: 'Yu Mincho', '游明朝', 'Hiragino Mincho ProN', serif;
  font-size: 1.1rem;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-decoration: none;
  pointer-events: none;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateY(100%);
  z-index: 2;
  line-height: 1.25;
}

#sp-floating-action-btn::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 100%;
  width: 100%;
  display: block;
  background-color: #C8186E;
  z-index: 1;
}

.sp-floating-action-btn-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px solid rgb(255 255 255 / 50%);
  z-index: 2;
}

.sp-floating-action-btn-inner .brXs {
  display: none;
}

@media screen and (max-width: 500px) {
  .sp-floating-action-btn-inner .brXs {
    display: flex;
  }
}

@media screen and (max-width: 330px) {
  #sp-floating-action-btn {
    font-size: 18px;
  }
}

#sp-floating-action-btn.spfab-fadeout {
  pointer-events: none !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease;
}

@media screen and (max-width: 767px) {
  #sp-floating-action-btn.spfab-show {
    display: flex;
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
  }

  #sp-floating-action-btn.spfab-hide {
    display: flex;
    pointer-events: none;
    opacity: 0;
    transform: translateY(100%);
  }
}

@media screen and (min-width: 768px) {
  #sp-floating-action-btn {
    display: none !important;
  }
}