@charset "utf-8";

.floating-button {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 10px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  z-index: 8;
  margin-bottom: 0;
}

.floating-button-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
  gap: 1rem;
}

.btnL .floating-button-wrap button:nth-of-type(1) {
  background-color: #fff;
  font-weight: bold;
  height: 3rem;
  border: solid 3px #000;
  text-align: center;
  display: block;
  width: 50%;
  margin: 0 auto;
  border-radius: 3px;
  color: #333;
  font-size: 0.8rem;
}

.btnL .floating-button-wrap button:nth-of-type(1)::before {
    content: "";
    position: absolute;
    background: url(../img/btn_bg.png);
    background-size: cover;
    width: 16px;
    height: 38px;
    left: 4px;
    top: 50%;
    transform: translate(0px, -50%);
}

.btnL .floating-button-wrap button:nth-of-type(1)::after {
    content: "";
    position: absolute;
    background: url(../img/btn_bg.png);
    background-size: cover;
    width: 16px;
    height: 38px;
    right: 4px;
    top: 50%;
    transform: scale(-1.0) translate(0px, 50%);
}

.btnL.floating-button button:nth-of-type(2) {
  margin-top: 0rem;
}

.btnL .floating-button-wrap button:nth-of-type(2) {
  margin-top: 0rem;
}

@media screen and (max-width: 640px) {
    .btnL .floating-button-wrap button:nth-of-type(1)::after, .btnL .floating-button-wrap button:nth-of-type(1)::before {
        width: 11px;
        height: 28px;
    }
}