
/*-------------------------------------------------
|-  section
-------------------------------------------------*/
.section-ttl {
    margin-bottom: 90px;
}
@media screen and (max-width: 767px){
    .section-ttl {
        margin-bottom: 25px;
    }
}
/*-------------------------------------------------
|-  cate-wrap
-------------------------------------------------*/
.news-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.cate-wrap {
    width: 180px;
    margin-top: 20px;
    border: 1px solid var(--primary-color);
    box-sizing: border-box;
}
.cate-ttl {
    padding: 9px 0;
    color: #fff;
    font-size: var(--font-size14);
    font-weight: 600;
    text-align: center;
    background: var(--primary-color);
}
.cate-list {
    padding: 20px;
    box-sizing: border-box;
}
.cate-list__item {
    margin-bottom: 20px;
}
.cate-list__item:last-child {
    margin-bottom: 0;
}
.cate-list__link {
    font-size: var(--font-size14);
    text-decoration: underline;
}
.cate-list__link:hover {
    text-decoration: none;
}
.active .cate-list__link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}
@media screen and (max-width: 767px){
    .news-wrap {
        display: block;
    }
    .cate-wrap {
        width: 100%;
        margin: 0 0 20px;
    }
    .cate-ttl {
        padding: 10px 0;
        font-size: var(--font-size16);
    }
    .cate-list {
        padding: 30px;
    }
    .cate-list__item {
        margin-bottom: 10px;
    }
}
/*-------------------------------------------------
|- news-list
-------------------------------------------------*/
.news-list {
    width: 73%;
}
.news {
    width: 100%;
    border-bottom: 1px dotted #888;
}
.news-link {
    padding: 20px 0;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    transition: .3s;
}
.news-link:hover .news-ttl {
    color: var(--primary-color);
}
.news-date {
    margin-right: 10px;
    font-size: var(--font-size13);
    line-height: 2;
}
.news-cate {
    min-width: 124px;
    margin-right: 20px;
    padding: 2px 10px;
    box-sizing: border-box;
    color: #fff;
    font-size: var(--font-size13);
    text-align: center;
}
.news-ttl {
    font-size: var(--font-size15);
    word-break: break-word;
    flex: 1;
}
@media screen and (max-width: 767px){
    .news-list {
        width: 100%;
    }
    .news-link {
        padding: 10px 0;
    }
    .news-date {
        line-height: 1.5;
    }
    .news-cate {
        min-width: 90px;
        margin-right: 0;
        padding: 0 5px;
    }
    .news-ttl {
        width: 100%;
        margin-top: 10px;
        font-size: var(--font-size14);
        flex: none;
    }
}
