@charset "utf-8";

.newsItem {
    border-bottom: 1px solid #D8D8D8;
}

.newsBxFl {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 15px 0;
    transition: all .5s;
}

.newsBxFl:hover {
    opacity: .5;
}

.newsItem:first-of-type .newsBxFl {
    padding-top: 0;
}

.newsTxtBx {
    width: calc(100% - 24px);
}

.newsCateFl {
    display: flex;
    align-items: center;
}

.newsDate {
    width: max-content;
    margin: 0 10px 0 0;
    color: var(--primaryB);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .05em;
    line-height: 1.4;
}

.newsCate {
    display: inline;
    align-items: center;
    flex: 1;
    max-width: max-content;
    height: 26px;
    padding: 1px 10px 0;
    color: var(--primaryB);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .05em;
    line-height: 1.4;
    border: 1px solid var(--primaryB);
    word-break: keep-all;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
}

.newsTit {
    margin: 10px 0 0;
    line-height: 1.5;
    color: var(--black);
}

.newsArrow {
    margin: 0 0 3px 15px;
    width: 8.5px;
}

.inNewsFl {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
}

.inNewsFlL {
    width: 100%;
    margin: 40px 0 0;
}

.inNewsFlR {
    width: 100%;
}


/* 詳細 */

.detailTit {
    padding: 12px 0;
    border-bottom: 1px solid #D8D8D8;
}



/*  サイドメニュー */
.cateLink {
    color: var(--black);
    margin: 8px 0 0;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1.5em;
    font-size: 14px;
}

.cateLink:hover {
    color: var(--black);
    text-decoration: underline;
}


/*  ページャー */

.webgene-pagination {
    width: 100%;
    grid-column: 1/3;
}

.webgene-pagination>ul {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.webgene-pagination>ul>li {
    display: flex;
    margin: 30px 5px 0;
    height: 40px;
    min-height: 40px;
    width: 100%;
    max-width: 40px;
    font-size: 14px;
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 4px 0;
    align-items: center;
    border-radius: 50%;
}

.webgene-pagination>ul>li>a {
    width: 100%;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: initial;
    font-size: 15px;
    transition: all .3s;
    color: var(--primaryB);
}

.webgene-pagination>ul>li>a:hover {
    color: #fff;
    background-color: var(--primaryB);
    text-decoration: none;
    transition: all .3s;
}

.webgene-pagination>ul>li.selected>a {
    color: #fff;
    background: var(--primaryB);
    cursor: inherit;
    border-radius: 50%;
    transition: all .3s;
}

.webgene-pagination>ul>li.selected>a:hover {
    color: #fff;
    background-color: var(--primaryB);
    transition: all .3s;
}

.webgene-pagination>ul>.prev>a,
.webgene-pagination>ul>.next>a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 40px;
    border: 0;
    font-size: 0;
    font-weight: 500;
    letter-spacing: .05em;
    color: var(--primaryB);
}

.webgene-pagination>ul>.prev>a:hover,
.webgene-pagination>ul>.next>a:hover {
    color: #fff;
    opacity: .5;
    background-color: initial;
}


.webgene-pagination>ul>.prev>a::before,
.webgene-pagination>ul>.next>a::before {
    content: "";
    display: block;
    top: 50%;
    width: 20px;
    height: 16px;
    margin: 0 0 .3em;
    transition: all .3s;
}

.webgene-pagination>ul>.prev>a::before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 16px 10px 0;
    border-color: transparent var(--primaryB) transparent transparent;
}

.webgene-pagination>ul>.next>a::before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent var(--primaryB);
}




/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width: 768px) {

    .newsBxFl {
        padding: 30px 0 20px;
    }

    .newsDate {
        margin: 0 20px 0 0;
        font-size: 16px;
    }

    .newsCate {
        font-size: 16px;
        height: 28px;
        padding: 1px 24px 0;
    }

    .inNewsFl {
        flex-direction: row;
    }

    .inNewsFlL {
        width: 25%;
        margin: 0
    }

    .inNewsFlR {
        width: 70%;
    }

    /* 詳細 */

    .detailTit {
        padding: 20px 0;
    }

    /* ページャー */
    .webgene-pagination>ul>li>a {
        height: 40px;
        width: 40px;
        font-size: 18px;
    }

}

/* min-width: 768px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */



/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1024px) {



    .webgene-pagination>ul>li {
        margin: 40px 10px 0;
    }


}

/* min-width: 1024px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */