#chat_fixed {
  position: fixed;
  left: 30px;
  bottom: 30px;
  max-height: 700px;
  height: 85%;
  width: 400px;
  z-index: 9999;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  -webkit-transform: translateX(-470px);
          transform: translateX(-470px);
}
@media (max-width: 880px) {
  #chat_fixed {
    left: auto;
    right: 10px;
    -webkit-transform: translateX(450px);
            transform: translateX(450px);
  }
}
@media (max-width: 880px) and (max-width: 640px) {
  #chat_fixed {
    width: 91%;
    height: 90%;
    right: 2%;
    -webkit-transform: translateX(105%);
            transform: translateX(105%);
  }
}
#chat_fixed.chat_appear {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
          box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  /*.circle_attention {
    transform: scale(1.25);
    opacity: 0;
    &::before {
      transform: scale(1.3);
    }
    &::after {
      transform: scale(1.3);
    }
  }*/
}
@media (max-width: 880px) {
  #chat_fixed.chat_appear {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
#chat_fixed.chat_appear .chat_mini {
  opacity: 1;
}
#chat_fixed.chat_disappear {
  -webkit-transform: translateX(-600px);
          transform: translateX(-600px);
}
@media (max-width: 880px) {
  #chat_fixed.chat_disappear {
    -webkit-transform: translateX(600px);
            transform: translateX(600px);
  }
}
@media (max-width: 880px) and (max-width: 640px) {
  #chat_fixed.chat_disappear {
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
  }
}
#chat_fixed #chat_wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
#chat_fixed .chat_close {
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 80px;
  right: -160px;
  z-index: 99999;
  -webkit-transition: all 0.4s 0.5s;
  transition: all 0.4s 0.5s;
  z-index: 99999;
  cursor: pointer;
}
@media (max-width: 880px) {
  #chat_fixed .chat_close {
    right: auto;
    left: -160px;
    bottom: 50px;
  }
}
@media (max-width: 880px) and (max-width: 640px) {
  #chat_fixed .chat_close {
    left: calc(-105px - 4%);
  }
}
#chat_fixed .chat_close span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #2463ea;
}
#chat_fixed .chat_close span.bar1 {
  -webkit-transform: translateY(1.5px) rotate(45deg);
          transform: translateY(1.5px) rotate(45deg);
}
#chat_fixed .chat_close span.bar2 {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
#chat_fixed .chat_close.button_remove {
  -webkit-animation: button_remove 0.4s 0.1s forwards;
          animation: button_remove 0.4s 0.1s forwards;
}
@media (max-width: 880px) {
  #chat_fixed .chat_close.button_remove {
    -webkit-animation: button_remove_sp 0.4s 0.1s forwards;
            animation: button_remove_sp 0.4s 0.1s forwards;
  }
}
#chat_fixed .chat_button {
  position: absolute;
  width: 100px;
  height: 100px;
  bottom: 0;
  right: -150px;
  color: #ccc;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
  background: #2463ea;
  border-radius: 50%;
  z-index: 999;
  cursor: pointer;
}
@media (max-width: 880px) {
  #chat_fixed .chat_button {
    width: 85px;
    height: 85px;
    right: auto;
    left: -140px;
    bottom: -10px;
    font-size: 1.1rem;
  }
}
@media (max-width: 880px) and (max-width: 640px) {
  #chat_fixed .chat_button {
    left: calc(-85px - 4%);
  }
}
#chat_fixed .chat_button span {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#chat_fixed .chat_button.button_remove {
  -webkit-animation: button_remove 0.4s 0.1s forwards;
          animation: button_remove 0.4s 0.1s forwards;
}
@media (max-width: 880px) {
  #chat_fixed .chat_button.button_remove {
    -webkit-animation: button_remove_sp 0.4s 0.1s forwards;
            animation: button_remove_sp 0.4s 0.1s forwards;
  }
}
#chat_fixed .chat_mini {
  position: absolute;
  top: 0;
  right: -20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20px;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(37, 99, 235)), to(rgb(14, 165, 233)));
  background-image: linear-gradient(rgb(37, 99, 235), rgb(14, 165, 233));
  cursor: pointer;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  opacity: 0;
}
@media (max-width: 880px) {
  #chat_fixed .chat_mini {
    right: auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    left: -20px;
  }
}
@media (max-width: 880px) and (max-width: 640px) {
  #chat_fixed .chat_mini {
    width: 5%;
    left: -5%;
  }
}
#chat_fixed .chat_mini .arrow {
  display: block;
  width: 11px;
  aspect-ratio: 1/1;
  border: 2px solid;
  border-color: transparent #fff #fff transparent;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
@media (max-width: 880px) {
  #chat_fixed .chat_mini .arrow {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
@media (max-width: 880px) and (max-width: 640px) {
  #chat_fixed .chat_mini .arrow {
    width: 60%;
  }
}
#chat_fixed #chat_inner {
  width: 100%;
  height: 100%;
  /* .circle_attention {
    display: block;
    width: 20%;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: 49%;
    left: 18%;
    border: 1px solid #c4dafd;
    border-radius: 50%;
    transition: 1.2s;
    &::before {
      content: "";
      display: block;
      width: 110%;
      aspect-ratio: 1 / 1;
      position: absolute;
      top: -5%;
      left: -5%;
      border: 1px solid #c4dafd;
      border-radius: 50%;
      transition: 1s;
    }
    &::after {
      content: "";
      display: block;
      width: 116%;
      aspect-ratio: 1 / 1;
      position: absolute;
      top: -8%;
      left: -8%;
      border: 1px solid #c4dafd;
      border-radius: 50%;
      transition: 1.1s;
    }
  } */
}
#chat_fixed #chat_content {
  width: 100%;
  height: calc(100% - 64px);
}
@media (max-width: 640px) {
  #chat_fixed #chat_content {
    height: calc(100% - 54px);
  }
}
#chat_fixed .chat_cap {
  padding: 5px 8px;
  font-size: 1.2rem;
  line-height: 1.5;
  background: #fff;
  text-align: justify;
  /* a {
    color: #2463ea;
    text-decoration: underline;
  } */
}
@media (max-width: 640px) {
  #chat_fixed .chat_cap {
    padding: 5px 5px 0;
    height: 54px;
    font-size: 1.1rem;
    line-height: 1.4;
  }
}

@-webkit-keyframes button_remove {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    opacity: 0.16;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-660px);
            transform: translateX(-660px);
  }
}

@keyframes button_remove {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    opacity: 0.16;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-660px);
            transform: translateX(-660px);
  }
}
@-webkit-keyframes button_remove_sp {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    opacity: 0.16;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(660px);
            transform: translateX(660px);
  }
}
@keyframes button_remove_sp {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    opacity: 0.16;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(660px);
            transform: translateX(660px);
  }
}/*# sourceMappingURL=chat.css.map */