.pageContents {
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

.newsHead__title {
    color: #182B38;
    font-size: var(--fontSize28);
}

.newsHead__nav {
    background: #F3F4F4;
    border-radius: 20px;
    display: grid;
    gap: calc(8px * 2) calc(8px * 2);
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    margin-top: calc(8px * 5);
    padding: calc(8px * 6) calc(8px * 5);
}

.newsHead__nav--list a {
    background: #fff;
    border-radius: 30px;
    color: var(--colorNavy);
    display: inline-block;
    font-size: var(--fontSize16);
    font-weight: bold;
    padding: calc(8px * 2) 0;
    text-align: center;
	text-decoration: none;
    width: 100%;
}

.newsHead__nav--list a.is-active {
    background: var(--colorNavy);
    color: #fff;
}

.newsArea {
    margin-top: calc(8px * 12);
}

.newsArea__list li a {
    align-items: flex-start;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
    column-gap: calc(8px * 5);
    display: flex;
    padding: calc(8px * 6) calc(8px * 10) calc(8px * 6) 0;
    position: relative;
	text-decoration: none;
}

.newsArea__list li a::after {
    background: url("../images/common/button_arrow.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    height: 24px;
    margin-top: -12px;
    position: absolute;
    right: calc(8px * 4);
    top: 50%;
    width: 24px;
}

.newsArea__list--date {
    color: #182B38;
    font-size: var(--fontSize18);
    font-weight: bold;
    line-height: 1.8;
}

.newsArea__list--button {
    background: #AC232F;
    border-radius: 30px;
    color: #fff;
    display: inline-block;
    font-size: var(--fontSize14);
    margin-right: calc(8px * 3);
    max-width: 150px;
    padding: calc(8px * 1) 0;
    text-align: center;
    width: 100%;
}

.newsArea__list--button.is-boot-one {
    background: #009fe8;
}

.newsArea__list--button.is-connect-one {
    background: #c30d23;
}

.newsArea__list--button.is-family-explorer {
    background: #02559a;
}

.newsArea__list--button.is-sbc {
    background: #349A67;
}

.newsArea__list--button.is-event {
    background: #97A4A4;
}

.newsArea__list--button.is-news-room {
    background: #2F3F4C;
}

.newsArea__list--button.is-press-release {
    background: #326588;
}

.newsArea__list--title {
    color: #182B38;
    font-size: var(--fontSize16);
    font-weight: 300;
    line-height: 1.8;
	text-decoration: underline;
}

.newsPageNav {
    display: flex;
    justify-content: center;
    margin-top: calc(8px * 8);
}

.wp-pagenavi {
    align-items: center;
    column-gap: calc(8px * 2);
    display: flex;
}

.wp-pagenavi a,
.wp-pagenavi span {
    align-items: center;
    border-radius: 50%;
	color: #9BA9B2;
    display: flex;
    font-size: var(--fontSize16);
    height: 32px;
    justify-content: center;
    width: 30px;
}

.wp-pagenavi .current {
    background: #326588;
    color: #fff;
    font-weight: bold;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
	border-color: #BFBFBF !important;
}

.wp-pagenavi .page.larger { 
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #9BA9B2;
    display: flex;
    font-size: var(--fontSize16);
    font-size: var(--fontSize16);
    font-weight: bold;
    height: 30px;
    justify-content: center;
    width: 30px;
}  

.nextpostslink {
    display: none;
}

@media screen and (max-width: 767px) {
    .newsHead__nav {
        gap: calc(8px * 2) calc(8px * 1);
        grid-template-columns: 1fr 1fr;
        margin-top: calc(8px * 3);
        padding: calc(8px * 3) calc(8px * 3);
    }
    
    .newsHead__nav--list a {
        padding: calc(8px * 1.5) 0;
    }
    
    .newsArea {
        margin-top: calc(8px * 6);
    }
    
    .newsArea__list li a {
        flex-wrap: wrap;
        padding: calc(8px * 3) calc(8px * 6) calc(8px * 3) 0;
    }
    
    .newsArea__list li a::after {
        height: 16px;
        margin-top: -8px;
        right: calc(8px * 2);
        width: 16px;
    }

    .newsArea__list--button {
        max-width: 120px;
    }
    
    .newsArea__list--title {
        margin-top: calc(8px * 2);
    }
    
    .newsPageNav {
        display: flex;
        justify-content: center;
        margin-top: calc(8px * 8);
    }
    
    .wp-pagenavi {
        align-items: center;
        column-gap: calc(8px * 2);
        display: flex;
		flex-flow: row wrap;
		row-gap: calc(8px * 2);
    }
    
    .wp-pagenavi .current {
        align-items: center;
        background: #326588;
        border-radius: 50%;
        color: #fff;
        display: flex;
        font-size: var(--fontSize16);
        font-weight: bold;
        height: 30px;
        justify-content: center;
        width: 30px;
    }
    
    .wp-pagenavi .page.larger { 
        align-items: center;
        border: 1px solid #ddd;
        border-radius: 50%;
        color: #9BA9B2;
        display: flex;
        font-size: var(--fontSize16);
        font-size: var(--fontSize16);
        font-weight: bold;
        height: 30px;
        justify-content: center;
        width: 30px;
    }  
    
    .nextpostslink {
        display: none;
    }
}