@charset "utf-8";
/* CSS Document */

.flexbox {
    background-color: #BF0205;     /* 背景色指定 */
   	display: flex;              /* フレックスボックスにする */
	 justify-content:center;
	height:337px;
}
 
.flexitem {
    color:  #fff;               /* 文字色 */
    border-radius:  5px;        /* 角丸指定 */
}
 
.flexitem:nth-child(1) {
    background-color:  #BF0205; /* 背景色指定 */
	width:450px;
}

.flexitem:nth-child(2) {
    background-color:  #BF0205; /* 背景色指定 */
	padding-left: 20px;
	width:610px;
}