@charset "UTF-8";
.voice-area {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 0 22px;
  margin-top: 2.5rem;
}
.voice-area.area01{
  margin-top: 0;
}
.voice-area.area03{
  margin-bottom: 5rem;
}
.voice-area img {
  max-width: 90px;
  height: 100%;
  border: 3px solid #ffffff;
  border-radius: 50%;
}

.ballon-ttl {
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  font-weight: 700;
  background: none;
  margin: 0 0 5px 0;
}
.balloon-left {
  position: relative;
  display: inline-block;
  padding: 1rem;
  min-width: 120px;
  max-width: 100%;
  color: #333;
  font-size: 16px;
  background: #FFF;
  border: solid 2px #333;
  border-radius: 20px;
  box-sizing: border-box;
}

.balloon-left:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -25px;
  margin-top: -12px;
  border: 13px solid transparent;
  border-right: 12px solid #FFF;
  z-index: 2;
}

.balloon-left:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -14px;
  border: 15px solid transparent;
  border-right: 15px solid #333;
  z-index: 1;
}

.balloon-left p {
  margin: 0;
  padding: 0;
}
.balloon-text{
  font-weight: 700;
  font-size: clamp(0.813rem, 0.744rem + 0.34vw, 1rem);
}

.balloon-text span{
  background: linear-gradient(
    transparent 85%,
    #FDF140 80%
  );
}
@media screen and (max-width:768px){
.voice-area {
  gap: 8px;
}
}

@media screen and (max-width:650px){
  .voice-area {
    align-items: center;
    margin-top: 1.5rem;
  }
  .voice-area.area01{
    margin-top: 2rem;
  }
  .voice-area.area03 {
    margin-bottom: 3rem;
}
.balloon-left:before,
.balloon-left:after{
  top: 35%;
}

  }