/* 全体 */

.region.region-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 1000px;
    margin: 0 auto;
}

article{
    width: 100%;
}


/* トップ画像 */
.TopImage {
    background-image: url(/sites/default/files/images/s_bg.png);
    height: 240px;
    background-repeat: no-repeat;
    width: 100%;
    border-radius: 3px;
}

.TopImage>.TopWrapper {
    width: 610px;
    float: right;
    margin-right: 70px;
    margin-top: 36px;
}


/* トップ画像内テキスト */
.TopWrapper h3 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin: 20px 0 30px;
}

.TopText {
    border-left: 5px solid rgba(255,255,255,0.5);
    padding-left: 1rem;
    color: #fff;
    text-align: justify;
    line-height: 2.5rem;
    letter-spacing: 0.1rem;
}

.ContentList {
    margin-top: 4rem;
}

.MainWrapper{
    margin-bottom: 2rem;
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 300px auto;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.MainWrapper .thumbnail{
    grid-row: 1/3;
    grid-column: 1;
    border: none;
    margin-top: 16px;
}

.MainWrapper .thumbnail img{
    border-radius: 4px;
}


.MainWrapper .title{
    grid-row: 1;
    grid-column: 2;
    margin-left: 1rem;    
}

.MainWrapper .title h3{
    margin: 20px 0;
}


.MainWrapper .content{
    grid-row: 2;
    grid-column: 2;
    margin-bottom: 4rem;
    margin-left: 1rem;
    border-left: 5px solid orange;
    padding-left: 1rem;
}

.MainWrapper .content p{
    padding-left: 1rem;
    font-size: 16px;
    color: #999;
}