/* 幅が750px以下 (スマホ)*/
@media screen and (max-width: 600px){
	
	.img-toysounds{
		width:20%;
		height:20%;
	}

}

/* 幅が751px以上 (PC)*/
@media screen and (min-width: 601px){
	
	.img-toysounds{
		object-fit: contain;
		width: 100px;
		height: 20px;
	}

}