• widgetマスター

    モデレータ
    2023年10月17日 14:54

    おまたせいたしました!

    下記CSS調整してください!

    .items {
    	width: 100%;
    	display: flex;
    	flex-wrap: wrap;
    	
    	/* 追加 */
    	justify-content: space-between;
    }
    
    .item__box {
    	/* 下記3つ修正 */
    	width: calc(50% - 10px);
    	padding: 10px;
    	margin-right: 0;
    
    	/* 追加 */
    	box-sizing: border-box;
    
    	margin-top: 45px;
    	background: #fff;
    	border-radius: 10px;
    	border: 2px solid #333;
    	box-shadow: 3px 5px 3px 3px rgba(0, 0, 0, 0.3);
    	position: relative;
    }
    
    .detail dd {
    	margin: 0;
    	color: #333;
    	font-weight: bold;
    	margin: 6px 0 6px;
    	font-size: 15px;
    
    	/* 追加 */
    	flex: 1;
    }