/*==================================================
fixed banner
===================================*/
.contact_banner {
  z-index: 100;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.contact_banner__head {
  background: #7fd113;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.contact_banner__container {
  max-width: 1000px;
  margin-inline: auto;
}

.contact_banner__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.contact_banner__item:nth-child(1) {
  position: relative;
}

.contact_banner__item_tel_decoration {
  position: absolute;
  top: 0%;
  left: 5px;
  width: 20%;
}

.top_btn {
  z-index: 20;
  position: fixed;
  width: 2.94rem;
  right: 2.7rem;
  bottom: 12rem;
  gap: 1.5rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media (min-width: 768px) and (max-width: 960px) {
  .contact_banner__item_tel_decoration {
    top: -25%;
  }
}

@media screen and (min-width: 960px) {
  .contact_banner__head {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }

  .contact_banner__container {
    height: 7.2rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    padding-right: 6.2rem;
    padding-left: 6.2rem;
    background: #fff;
  }

  .contact_banner__item_tel_decoration {
    top: -5px;
    left: 0;
    width: 52px;
  }

  .contact_banner__item {
    padding-top: 2px;
  }
}

/*==================================================
  fixed banner END
  ===================================*/
