@charset "shift_jis";

.speechBubble {
  position: relative;
    display: inline-block;
    padding: 16px;
    border: 2px solid #e07966;
    border-radius: 8px;
    background-color: #ffffff;
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 30px);
    font-weight: 400;
    line-height: 1.5;
    color: #e07966;
    width: 90%;
    max-width: 900px;
    min-width: 300px;
    margin: 0 auto 30px auto;
}

.speechBubble::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 20px 10px 0 10px;
  border-color: #e07966 transparent transparent;
  translate: -50% 100%;
}

.speechBubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 15.5px 7.8px 0 7.8px;
  border-color: #ffffff transparent transparent;
  translate: -50% 100%;
}

@media screen and (min-width: 750px) {
	.sm{
		display: none;
	}

}
@media screen and (max-width: 749px) {
	.pc{
		display: none;
	}
}