/* 外側のボックス */

.outer-box {
    display: flex;
    width: 90%;
    margin: 0 auto;
    justify-content: space-between;
    flex-wrap: wrap;
    line-height: 1.5;
    text-align: center;   
/*  background-color:blue;  エラーチェック用*/
}

/*　内側のボックス */


.inner-box {
    width: 30%;
    padding: 10px 10px;
/*  background-color:powderblue;  エラーチェック用*/
}

