@charset "UTF-8";



.voiceBox {
  border: 2px solid #ccc;
  border-radius: 20px;
  padding: 20px 20px;
  
}
.voiceBox_tit{
  font-size: clamp(20px, 3vw, 20px);
  font-weight: bold;
  line-height: 1.2;
  margin: 10px 0;
}
.voiceBox_subTit{
  width: 90%;
  font-size: 16px;
  margin: 0 auto 30px; 
  font-weight: bold;
  text-align: right;
  position: relative;
}

.voiceBox_img{
  width: 100px;
  position: absolute;
  bottom: -10px;
  left: 0;
  border: 2px solid #ccc;
  border-radius: 50%;
}
.voiceBox_img img{
  max-width: 100px;
  max-height: 100px;
  width: 100%;
}

@media screen and (max-width:450px) {
  .voiceBox_subTit{ width: 100%;}
  .voiceBox_img{ width: 30%;}
}