/* ******************* */
/* Footer  CSS */
/* ******************* */

.o_footer {
  background-color: #fff;
}
.o_footer .brandBox img {
  width: 6.6rem;
}
.o_footer .brandBox h4 {
  color: #797979;
  font-weight: 400;
}
.o_footer .brandBox h4 b {
  font-weight: 700;
}

.o_footer .infoBox ul {
  display: flex;
  flex-wrap: wrap;
}
.o_footer .infoBox ul li {
  color: #797979;
  font-size: 0.93rem;
  font-weight: 400;
  line-height: 2;
}
.o_footer .infoBox ul li span {
  position: relative;
  padding: 0 1em;
}
.o_footer .infoBox ul li span::after {
  content: "";
  background-color: #d2d2d2;
  width: 1px;
  height: 0.7em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.o_footer .infoBox .infoList_2 {
  margin-top: 0.4rem;
}

@media all and (max-width: 767px) {
  .o_footer {
    padding-bottom: 25vmin;
  }
  .o_footer .brandBox img {
    width: 15vmin;
  }
  .o_footer .infoBox ul {
    display: block;
  }
  .o_footer .infoBox ul li {
    font-size: 3vmin;
  }
  .o_footer .infoBox ul li span {
    padding: 0 1em;
    display: none;
  }
  .o_footer .infoBox ul li span::after {
    height: 0.7em;
  }

  .o_footer .infoBox .infoList_2 {
    margin-top: 0;
  }
}

/* ************* */
/* o_floatingBtn */
.o_floatingBtn {
  position: fixed;
  width: 7.67rem;
  top: 100px;
  right: 0;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  transition: 1s;
  transform: translateX(100%);
}
.o_floatingBtn a {
  display: inline-block;
}

.o_floatingBtn.active {
  right: 1rem;
  opacity: 1;
  transform: translateX(0);
}

.o_floatingBtn {
  display: block;
}
.o_floatingBtn_mo {
  display: none;
}

@media all and (max-width: 767px) {
  .o_floatingBtn {
    display: none;
  }

  .o_floatingBtn_mo {
    display: block;
    position: fixed;
    width: 100%;
    bottom: 0;
    right: 0;
    cursor: pointer;
    z-index: 99;
    opacity: 1;
    transition: 1s;
    transform: translateY(0);
  }
  .o_floatingBtn_mo a {
    display: inline-block;
    width: 100%;
    height: 15vmin;
    background-color: var(--m1-color);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .o_floatingBtn_mo a span {
    color: var(--w-color);
    font-size: 4.8vmin;
    font-weight: 700;
    line-height: 1;
  }
  /* .o_floatingBtn_mo.active {
    opacity: 1;
    transform: translateY(0);
  } */
}
