@charset "utf-8";

/*============================================================================
	hakunaisyou
============================================================================*/

/* ---------------------------------------------------------------------------------------------
	横並びボックス
--------------------------------------------------------------------------------------------- */
/*  */
.container {
  display: flex;
  border: 0px solid;
  flex-wrap: wrap;
  justify-content: center; 
  margin: 15px 0 15px 15px;


}

.container .item {
	width: 18%;
	height: 180px;
	padding: 100px 10px 10px 10px;
	margin: 10px;

}
.container .r01 {
    background-color: #fff;
    background-image: url(../image/img_anten.png); /* ロゴURL */
    background-repeat: no-repeat;                /* 1回だけ表示 */
    background-position: top center;           /* に表示 */
	border-radius: 3px;
	border: thin solid #3173ba;

}
.container .r02 {
    background-color: #fff;
    background-image: url(../image/img_kakeru.png); /* ロゴURL */
    background-repeat: no-repeat;                /* 1回だけ表示 */
    background-position: top center;           /* に表示 */
	border-radius: 3px;
	border: thin solid #3173ba;
}
.container .r03 {
    background-color: #fff;
    background-image: url(../image/img_itai.png); /* ロゴURL */
    background-repeat: no-repeat;                /* 1回だけ表示 */
    background-position: top center;           /* に表示 */
	border-radius: 3px;
	border: thin solid #3173ba;
}


@media screen and (max-width : 750px) {
	.container {
  		display: flex;
  		border: 0px solid;
  		flex-wrap: wrap;
  		justify-content: flex-start; 
  		margin: 15px 0 15px 0px;
	}	

	.container .item {  width: calc((100% - 20px) / 2 ); margin: 5px;}


}



