﻿.bnrboxnew{
  display: flex;
  flex-direction: row;
  justify-content: center; /* 中央寄せ */
  gap:40px;               /* 画像間隔 */
  width:1080px;
  margin:30px auto 0 auto;
}
@media screen and (max-width:480px){
	.bnrboxnew{
	  width:100%;
	  display: block;
	  flex-direction: none;
	  justify-content: none;
	  
	}
}


.bnrboxnew .img1{
  width:300px;
  margin:0 0 20px 0;
}
@media screen and (max-width:480px){
	.bnrboxnew .img1{
	  width:70%;
	  margin:0 auto 20px auto;
	  display: block;
	}
}

.bnrboxnew .img2{
  height:174px;
  margin:0 0 20px 0;
}
@media screen and (max-width:480px){
	.bnrboxnew .img2{
	  height:auto;
	  width:70%;
	  margin:0 auto 20px auto;
	  display: block;
	}
}

