@charset "utf-8";

/* 
*
*
UI模索用 
*
*
*/
.sbubble-1 {
  position: relative;
  /* display: inline-block; */
  width: 180px;
  background-color: #80cbc4;
  color: white;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  padding: 5px 10px;
  margin: 0 auto;
  margin-top: 85px;
}
.sbubble-1::before {
  position: absolute;
  top: 100%;
  left: 50%;
  height: 0;
  width: 0;
  border: solid transparent;
  border-top-color: #80cbc4;
  border-top-width: 10px;
  border-right-width: 5px;
  border-left-width: 5px;
  content: "";
}
/* -------------------------
スマホ
------------------------- */
@media only screen and (max-width: 768px) {
  .sbubble-1 {
    margin-top: 75px;
  }
}
