.flex_test-box {
    background-color: #fff;     /* 背景色指定 */
    padding:  10px;             /* 余白指定 */
    display: flex;              /* フレックスボックスにする */
    flex-wrap: wrap;            /* 折り返し指定 */
    justify-content: center;　　/* 中央揃え*/
}
 
.flex_test-item {
    padding: 10px;
/*    color:  #fff;               文字色 */
    margin:  5px;              /* 外側の余白 */
    border-radius:  5px;        /* 角丸指定 */
/*    font-size:  20px;           文字サイズ */
    width: 275px;               /* 幅指定 */
    text-align:  left;        /* 文字左揃え */
}
 
.flex_test-item:nth-child(1) {
    background-color: #eee; /* 背景色指定 */
}
 
.flex_test-item:nth-child(2) {
    background-color: #eee; /* 背景色指定 */
}
 
.flex_test-item:nth-child(3) {
    background-color: #eee; /* 背景色指定 */
}
 
.flex_test-item:nth-child(4) {
    background-color: #eee; /* 背景色指定 */
}

.flex_test-item:nth-child(5) {
    background-color: #eee; /* 背景色指定 */
}
 
.flex_test-item:nth-child(6) {
    background-color: #eee; /* 背景色指定 */
}
 
.flex_test-item:nth-child(7) {
    background-color: #eee; /* 背景色指定 */
}
 
.flex_test-item:nth-child(8) {
    background-color: #eee; /* 背景色指定 */
}

.flex_btn{
  color: #fff; /* 文字色指定 */
  padding: 3px 10px; /* 余白上下左右 */
  width: 50%; /* サイズ */
  background: #008b8b; /* ボタン色指定 */
  border-radius: 5px; /* 角丸 */
}