.main {
	padding:15px 0px 0px 0px
}

.content {
    max-width: 800px;
    margin-bottom: 20px;
    border: 2px solid black; /* 黒い枠線を追加 */
    padding: 15px; /* 枠線と中身の間に余白を追加 */
}
.title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}
.content-body {
    display: flex; /* 横に並べるためにflexを使用 */
    vertical-align: top;
    
}
.content-body img {
    align-items: center; /* 画像と説明を中央揃え */
    width: 250px; /* 画像の幅を固定 */
    height: auto;
    margin-right: 20px; /* 画像と説明の間に余白 */
}
.description {
    vertical-align:text-top;
}