img {
	width: 100%;
	max-width: 100%;
}

/*===============================================
●pc用のcssを記述
===============================================*/	
@media screen and (min-width:900px) {
	
	

	
	
		
/*fancybox----------*/	

.fancy_box {
    width: 100%;
    margin-top: 100px;
    margin-bottom: 100px;
    min-height: 300px;
    margin-right: auto;
    margin-left: auto;
    display: block;
    text-align: center;
}

.fancy_imgbox {
    width: 18%;
    margin-bottom: 20px;
    display: inline-block;
}
.fancy_imgbox img {
  width: 200px;
  height: 150px;
  object-fit: contain; /* この一行を追加するだけでOK!もしくは「cover」 */
}

}


/*===============================================
●sp用のcssを記述
===============================================*/	
@media screen and (max-width:899px) {

	
/*fancybox----------*/	

.fancy_box {
    width: 100%;
    max-width: 480px;
    margin-top: 100px;
    margin-bottom: 100px;
    min-height: 300px;
    margin-right: auto;
    margin-left: auto;
    display: block;
    text-align: center;
}

.fancy_imgbox {
    width: 30%;
    margin-bottom: 20px;
    display: inline-block;
}
.fancy_imgbox img {
  width: 200px;
  height: 150px;
  object-fit: contain; /* この一行を追加するだけでOK!もしくは「cover」 */
}	
	
}	
	
	
	
	
	
	
	
	
