
.line_cta{
  background: #000;
  border: solid 5px #06C755;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 6;
  animation: bounce 1s linear 10s;
  box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.45);
}

.line_cta_text{
  text-align: center;
  padding: 2rem;
  padding-bottom: 0;
  margin: 0;
}

.line_cta span{
  display: inline-block;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
  90% {
    transform: translateY(-5px);
  }
}
{#　ホバー時　#}
.line_cta:hover {
  background: #06C755;
  transition: all .1s;
}
/* --------------SP版------------------- */
/* .spCta_container */
.spCta_container {
  display: none !important;
  width: 90%;
  margin: 0 auto;
  position: fixed;
  bottom: -64px;
  background-color: white;
  border-radius: 40px 40px 0 0;
  align-items: center;
  right: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* translateXとtranslateYを一つにまとめる */
  z-index: 9999;
  box-shadow: 0px -1px 15px 1px rgba(192, 192, 192, 0.45)
}

/* .spCta_box */
.spCta_box {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  padding: 2rem;
}

/* .spCta_search */
.spCta_search {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 35px;
}
.spCta_search p {
  font-size: 10px;
  font-weight: bold;
}
/* .spCta_searchButton */
.spCta_searchButton {
  background-color: #EC6C00;
  border: 2px solid #000000;
}
.spCta_searchButton p {
  font-size: 14px;
  font-weight: bold;
}
/* .spCta_consult */
.spCta_consult {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 35px;
}

/* .spCta_lineButton */
.spCta_lineButton {
  background-color: #000000;
  border: 2px solid #06C755;
}

/* .spCta_consult p */
.spCta_consult > p {
  font-size: 10px;
  font-weight: bold;
}
.spCta_lineButton > p {
  font-size: 14px;
  font-weight: bold;
}
/* メディアクエリ */
@media screen and (max-width:680px) {
  .line_cta {
    display: none !important;
  }
  .spCta_container {
    display: block !important;
  }
  .spCta_container.spCta_hidden {
    display: none !important;
  }
  /* .spCta_boxのメディアクエリ */
  .spCta_box {
    padding: 2rem;
  }
}

/* メディアクエリ */
@media screen and (max-width:499px) {
  /* .spCta_boxのメディアクエリ */
  .spCta_box {
    padding: 2rem 1rem;
  }
  .spCta_searchButton > p,
  .spCta_lineButton > p {
    font-size: 12px;
  }
}
