@charset "utf-8";

#banners {
    display: flex;
 flex-wrap        : wrap;
justify-content: center;

/*    flex-direction: column;*/
    width: 94%;
    max-width: 1080px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    background-color: white;
    padding: 10px 10px 10px 10px;

}

#banners div {
	display: flex; /* 子要素をflexboxで揃える */
    flex-direction: column; /* 子要素をflexboxにより縦方向に揃える */
    justify-content: center; /* 子要素をflexboxにより中央に配置する */
    align-items: center;  /* 子要素をflexboxにより中央に配置する */
    border: 1px solid #e2e2e2; /* 見た目用 */

	width:170px;
	text-align:center;
	vertical-align:middle;
	padding-top:10px;
	padding-bottom:10px;
	margin:10px 10px 10px 10px;
}

