@charset "utf-8";

.fixed-buttons {
  /*  共通スタイル */
  z-index: 998;
  text-decoration: none;
}
.fixed-buttons__sp {
   display: none; /* PCでは非表示 */
}


/* 開業ボタン */
.material-icons {
  font-size: 1.2em;
  line-height: 1;
  display: inline-block;
}

.fixed-buttons {
  z-index: 998;
  position: fixed;
}
.fixed-buttons__pc {
  position: fixed;
  right: 1rem;
  bottom: 8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}
.fixed-buttons__pc img {
  max-width: 350px;
  height: auto;
  display: block;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.fixed-buttons__sp {
  display: none;
}

@media (max-width: 768px) {
  .fixed-buttons__pc {
    display: none;
  }
  .fixed-buttons__sp {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem;
    background: #fff;
    border-top: 1px solid #ddd;
    gap: 0.5rem;
    z-index: 998;
  }
  .fixed-buttons__sp .fixed-buttons__btn {
    flex: 1;
    text-align: center;
    padding: 0.8rem 0;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .uneekor-eye-mini .fixed-buttons__sp .fixed-buttons__btn,
  .uneekor-eye-xo .fixed-buttons__sp .fixed-buttons__btn
  {
    font-size: revert;
    padding: 1.3rem 0;
  }
  
  .fixed-buttons__sp .fixed-buttons__btn--document {
    background: #ff771c;
  }

  /* .fixed-buttons__sp .fixed-buttons__btn--contact {
    background: #2E7C2E;
  } */

  .fixed-buttons__btn--tel {
    background: #4d4d4d;
  }

  .fixed-buttons__btn--contact {
    background: #d83c1d;
  }

  .fixed-buttons__sp .fixed-buttons__btn:hover {
    opacity: 0.85;
  }
  .fixed-buttons__btn:hover {
    opacity: 0.85;
    
  }
  #pageTop {
        bottom: 70px !important;
    }

  footer {
      padding: 30px 0 70px 0 !important;
  }
}


