/*==========================
News post
==========================*/
/* ページ全体 */
.type--news::after {
        content: "";
    background-image: url(../images/bg-texture-yellow.png);
}
/* Header */
.type--news .header {
    position: static;
    justify-content: space-between;
}
.header * {
    color: #000;
}
.header_logo a {
    display: block;
}
.gnav_cta a {
    border-color: #000;
}
@media screen and (max-width: 800px) {
    .hamburger.active {
        right: 4rem;
    }
    .hamburger_line {
        background-color : #000
    }
    .hamburger.active .hamburger_line {
        background-color: #fff;
    }
}
/* Main */
.main {
    max-width: 150rem;
    margin: 0 auto;
    padding-bottom: 15rem;
    padding-right: 50px;
    padding-left: 50px;
}

.pageCotents {
    display: flex;
    justify-content: space-between;
    gap: 8rem;
}
.pageContents_l {
    width: 61.7%;
}
.postContent {
    margin-bottom: 10rem;
}
.postTime {
    font-size: 2rem;
}
.postTtl {
    font-size: 3.4rem;
    line-height: 1.5;
    margin: 2rem 0 5rem;
    font-weight: normal;
}
.postThumb {
    margin-bottom: 5rem;
}
.postThumb img {
    width: 100%;
    height: auto;
}
.postBody h2 {
    font-size: 2.8rem;
    line-height: 2.2;
    font-weight: 400;
}
.postBody ul,.postBody ol {
    font-size: 2rem;
    margin-bottom: 1.5em;
    padding-left: 1em;
}
.postBody li {
    font-size: 2rem;
    line-height: 2.2;
}
.postBody p {
    font-size: 2rem;
    line-height: 2.2;
    margin-bottom: 1.5em;
}
.pageBack {
    text-align: center;
}
.pageBack a {
    display: inline-block;
    border-bottom: solid 1px #000;
    width: 200px;
    text-align: center;
    padding-bottom: 10px;
    font-size: 2rem;
    padding-left: 2em;
    position: relative;
}
.pageBack a::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border: solid 6px;
    border-color: transparent #000 transparent transparent;
    position: absolute;
    top: 3px;
    left: 2em;
}
.pageContents_r {
    width: 38.3%;
    /* padding-top: 20rem; */
}
.pageContents_r h2 {
    font-size: 2.5rem;
    line-height: 2;
    font-weight: normal;
    border-bottom: solid 1px #000;
}
.pickupNews {
    list-style: none;
}
.pickupNews_item a {
    display: block;
    padding: 3rem;
    border-bottom: solid 1px #000;
}
.pickupNews_item_time {
    font-size: 1.2rem;
}
.pickupNews_item_ttl {
    font-size: 1.8rem;
    line-height: 1.5;
    padding-top: 2rem;
}
@media screen and (max-width: 800px) {
    .main {
        padding: 0 4rem 20rem;
    }
    .pageCotents {
        gap: 12rem;
        flex-direction: column;
    }
    .pageContents_l {
        width: 100%;
    }
    .postTtl {
        font-size: 3.6rem;
    }
    .postBody h2 {
    font-size: 3.2rem;
}
.postBody ul,.postBody ol {
    font-size: 2.8rem;
}
.postBody li {
    font-size: 2.8rem;
}
    .postBody p {
        font-size: 2.8rem;
    }
    .pageBack a {
        font-size: 2.8rem;
    }
.pageContents_r {
    width: 100%;
}
.pageContents_r h2 {
    font-size: 3.2rem;
}
.pickupNews_item_time {
    font-size: 2rem;
}
.pickupNews_item_ttl {
    font-size: 2.8rem;
}
}
/*==========================
News archive
==========================*/
.archiveContents .newsLists {
    margin-bottom: 12rem;
}
.newsLists {
    list-style: none;
}
.newsLists_item a {
    display: block;
    padding: 3rem;
    border-bottom: solid 1px #000;
}
.newsLists_item_time {
    font-size: 1.2rem;
}
.newsLists_item_ttl {
    font-size: 1.8rem;
    line-height: 1.5;
    padding-top: 2rem;
}
.newsLists_item a {
    position: relative;
}
.newsLists_item a::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border: 8px solid;
    border-color: transparent transparent transparent #000;
    position: absolute;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
}
.postMore {
    text-align: center;

}
.postMore a {
    display: inline-block;
    border-bottom: solid 1px #000;
    width: 200px;
    text-align: center;
    padding-bottom: 10px;
    font-size: 2rem;
    padding-right: 1em;
    position: relative;
}
.postMore a::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border: solid 6px;
    border-color: #000 transparent transparent transparent;
    position: absolute;
    top: 50%;
    right: 3rem;
    transform: translateY(-50%);
}
@media screen and (max-width: 800px) {
    .newsLists_item a::after {
        right: 0;
    }
    .postMore a {
        font-size: 2.8rem;
    }
    .newsLists_item_time {
        font-size: 2rem;
    }
    .newsLists_item_ttl {
        font-size: 2.8rem;
    }
}