/* 共通 */
.flexcontent {
    background: var(--main-theme-color);
    padding: 50px 0 100px;
}
.flexcontent-inner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 92%;
    max-width: 1200px;
}
.flexcontent-main {
    width: calc(100% - (248px + 48px));
}
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 248px;
}
@media screen and (max-width: 968px) {
    .flexcontent-main {
        width: calc(100% - (248px + 25px));
    }
}
@media screen and (max-width: 768px) {
    .flexcontent-main {
        margin: 0 0 25px;
        width: 100%;
    }
    .sidebar {
        width: 100%;
    }
}

/* sidebar */
.sidebar-widget {
    background: #fff;
    border: 4px solid var(--sub-theme-color);
    padding: 20px;
}
.sidebar-widget__ttl {
    border-bottom: 1px solid #DBDBDB;
    margin: 0 0 13px;
    padding: 0 0 13px;
}
.sidebar-widget__ttl p {
    font-size: 17.5px;
    font-weight: 500;
}
.sidebar-widget__postcard {
    border-bottom: 1px dashed #DBDBDB;
    margin: 0 0 15px;
    padding: 0 0 15px;
}
.postcard-image {
    line-height: 0;
    margin: 0 0 5px;
}
.postcard-text p {
    font-size: 14px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sidebar-widget__postlink a {
    border-bottom: 1px dashed #DBDBDB;
    display: block;
    padding: 8px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sidebar-widget__postlink:first-child a {
    padding-top: 0;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}


/* postlist */
.postlist-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.postlist-card {
    background: #fff;
    border: 4px solid var(--sub-theme-color);
    border-radius: 4px;
}
.postlist-card a {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 43px;
}
.postlist-card__image {
    line-height: 0;
    width: 228px;
}
.postlist-card__text {
    width: calc(100% - (228px + 34px));
}
.postlist-card__info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
    margin: 0 0 15px;
}
.postlist-card__cat {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}
.postlist-card__cat .cat {
    background: #E6F5EB;
    border: 2px solid var(--sub-theme-color);
    border-radius: 5px;
    color: var(--sub-theme-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    height: 31px;
    padding: 0 25px;
    width: max-content;
}
.postlist-card__date {
    color: #8C8779;
    font-size: 12px;
    font-weight: 400;
}
.postlist-card__ttl {
    font-size: 18px;
    font-weight: 700;
}
.postlist-card__more {
    color: var(--sub-theme-color);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    margin: 20px 0 0;
    text-align: right;
}
.postlist-card__more::after {
    background: url(../images/icon-arrow-circle-r-g.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 19px;
    margin-left: 5px;
    width: 19px;
}
@media screen and (max-width: 968px) {
    .postlist-card a {
        padding: 20px;
    }
    .postlist-card__image {
        width: 150px;
    }
    .postlist-card__text {
        width: calc(100% - (150px + 20px));
    }
    .postlist-card__info {
        gap: 15px;
        margin: 0 0 12px;
    }
    .postlist-card__cat .cat {
        height: 28px;
        padding: 0 15px;
    }
}
@media screen and (max-width: 768px) {
    .postlist-card__ttl {
        font-size: 16px;
    }
}
@media screen and (max-width: 568px) {
    .postlist-card a {
        padding: 15px;
    }
    .postlist-card__image {
        width: 100%;
    }
    .postlist-card__text {
        margin: 10px 0 0;
        width: 100%;
    }
    .postlist-card__info {
        flex-wrap: wrap;
        gap: 5px;
        margin: 0 0 12px;
    }
    .postlist-card__cat {
        width: 100%;
    }
    .postlist-card__cat .cat {
        height: 28px;
        padding: 0 15px;
    }
}