@charset "utf=8";

.news-area {
    display: flex;
    justify-content: space-between;
}

.news-main {
    width: 75%;
}

.news-side {
    width: 20%;
}

/*-----------------------------------------------------------
一覧
-----------------------------------------------------------*/

.inBlogWr {
    padding: 13rem 0 13rem;
}

.newsList {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(4, 1fr);
}

.newsItem{
    overflow: hidden;
}

.newsItem > a:hover .title {
    text-decoration: underline;
}

.newsItem .link {
    display: block;
}

.blogImgBox {
    position: relative;
    padding: 0 0 66.67%;
    height: 0;
}

.blogImgBox > img {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    object-fit: cover;
}

.newsItem .date {
    display: block;
    margin: 0.5rem 0 0;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    color: var(--primary);
}

.newsItem .title {
    display: block;
    margin: 1rem 0 0;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.inBlogBlockBox {
    width: 100%;
    max-width: 132rem;
    margin: 0 auto;
}

.newsList .category {
    display: inline-block;
    background: var(--primary);
    line-height: 1.5em;
    color: var(--white);
    text-align: center;
    padding: 0.5rem 1.5rem;
    word-break: keep-all;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    max-width: max-content;
    font-size: 1.4rem;
    margin-top: 1rem;
}

.resultZero.text-center {
    text-align: center;
}

/*-----------------------------------------------------------
詳細
-----------------------------------------------------------*/

.blogDtlTxt a {
    text-decoration: underline;
    color: #047387;
}

.blogDtlTxt a:hover {
    text-decoration: unset;
}

.newsDtl {
    width: 100%;
    background: #fff;
    border-top: solid 4px #047387;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
    padding: 4rem 3%;
}

.blogDtlName {
    border-bottom: 0.1rem solid #047387;
    padding: 0 0 1rem;
    margin: 2rem 0 0;
    color: #047387;
    letter-spacing: 0.1em;
    font-size: 3.5rem;
    line-height: 1.44em;
}

.blogDtlTxt {
    margin: 30px 0 0;
}

.blogDtlTxt p {
        margin: 0 0 2rem;
}

.blogDtlTxt img {
    display: block;
    margin: 16px 0;
}

.blogDtlDate {
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    color: #047387;
}

.blogDtlCate {
    margin: 4rem 0 0;
    color: #248583;
}

.inBlogBtnMg {
    margin: 3rem auto 0;
}

/*-----------------------------------------------------------
カテゴリ
-----------------------------------------------------------*/

.category-box {
    margin: 5rem 0 0;
    border: 0.1rem solid var(--primary);
    background: var(--white);
}

.category-box:first-child {
    margin: 0;
}

.category-title {
    background-color: var(--primary);
    color: #ffffff;
    margin: 0;
    padding: 1rem;
    font-weight: bold;
    font-size: 1.8rem;
}

.accordion-list, 
.accordion-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-list a {
    display: block;
    padding: 1rem;
    color: #333;
    text-decoration: none;
    border-bottom: 0.1rem solid #ccc;
    transition: background-color 0.3s;
    font-size: 1.5rem;
    transition: 0.3s
}

.accordion-list a:hover {
    opacity: 0.65;
}

.accordion-list li.has-child > a {
    position: relative;
    padding-right: 4rem;
    font-weight: 600;
}

.accordion-list li.has-child > a::after {
    content: '';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    width: 1rem;
    height: 0.2rem;
    background-color: var(--primary);
    transform: translateY(-50%);
    transition: transform 0.3s;
}

.accordion-list li.has-child > a::before {
    content: '';
    position: absolute;
    right: 2rem;
    top: 50%;
    width: 0.2rem;
    height: 1rem;
    background-color: var(--primary);
    transform: translate(50%, -50%);
    transition: opacity 0.3s;
}

.accordion-list li.has-child.is-open > a::before {
    opacity: 0;
}

.accordion-list ul.children {
    background-color: #dceef2;
    border-left: 0.5rem solid var(--primary);
}

.accordion-list ul.children li a {
    padding-left: 3rem;
    font-size: 1.4rem;
    font-weight: normal;
    border-bottom: 0.1rem solid #fff;
}

.accordion-list li:last-child > a {
    border-bottom: none;
}

/* ==========================================
ページャー
========================================== */

.wp-pagenavi {
    margin-top: 3rem;
}

.pagination-pages {
    display: none;
}

.wp-pagenavi {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}

.pagination-page {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 4rem;
	height: 4rem;
	border-style: solid;
	border-width: 0.1rem;
	border-radius: 50%;
	text-align: center;
}

.pagination-current-color {
	background: var(--primary);
	color: var(--white);
}

.pagination-page-color {
	border-color: var(--primary);
	color: var(--primary);
}

.pagination-page-color:hover {
	background: var(--primary);
	color: var(--white);
}

.pagination-first, .pagination-last {
	font-size: 1.2rem;
	border-style: solid;
	border-width: 0.1rem;
	padding: 0.4rem 0.5rem 0.2rem;
}

.pagination-first-color, .pagination-last-color {
	border-color: var(--primary);
	color: var(--primary);
}

.pagination-first-color:hover, .pagination-last-color:hover {
	background: var(--primary);
	color: var(--white);
}


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

@media screen and (width <= 1920px) {



}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

@media screen and (width <= 1550px) {



}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

@media screen and (width <= 1024px) {
    


}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

@media screen and (width <= 768px) {

.news-area {
    display: flex;
    flex-direction: column;
}

.news-main {
    width: 100%;
}

.news-side {
    width: 100%;
    margin: 5rem 0 0;
}

.newsList {
    grid-template-columns: repeat(2, 1fr);
}

.newsList .category {
    max-width: 80%;
    font-size: 1.2rem;
}

.newsItem .date {
    font-size: 1.4rem;
}

.newsItem .title {
    margin: 0.5rem 0 0;
    font-size: 1.5rem;
}

.inBlogWr {
    padding: 8rem 0 8rem;
}

/*-----------------------------------------------------------
カテゴリ
-----------------------------------------------------------*/

.category-box {
    margin: 3rem 0 0;
}

.category-title {
    font-size: 1.6rem;
}
	
.accordion-list a {
    font-size: 1.3rem;
}

.accordion-list ul.children {
    border-left: 0.3rem solid var(--primary);
}

.accordion-list ul.children li a {
    font-size: 1.3rem;
}
    
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

@media screen and (width <= 576px) {

.newsList {
    gap: 2rem;
}

.blogDtlDate {
    font-size: 1.4rem;
}

.blogDtlName {
    margin: 1rem 0 0;
    font-size: 2.3rem;
}
    
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

@media screen and (width <= 414px) {



}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */